Possible to log data from a game chat? [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I looked about but were unable to find if anything of such exist.
Is it possible to construct a java program, which can read sudden strings from a chat inside a game?
It would be used to log sudden data to a mysql to comparison.
If any knows something of this sort, any direction is high appreciated.

You can't do that directly. You would need to have access to the game's methods in order to know when a new chat entry appears, and how to get its content.
Appart from that, as Kenyanke explains, some games might save a chatlog on your computer, yet it won't help you anyway, since you have no idea of when these logs get saved, or if they do get saved for that matter.

Related

Trying to redirect incoming call to custom made UI in android [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm trying to redirect incoming calls on a custom made UI instead of default Android screen.
I have tried doing it using many ways like using CallScreeningService or InCallService but still not able to figure out the solution.
Can anyone provide a small sample working solution?
User arekolek provided an answer to my question with his own source sample at the end.
I verified it working back when he posted it, and should still work on current Android versions. Hope that helps, I would suggest providing feedback to there if it does.

Data from a website [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I was just sitting and thinking what I should do in programming.
And I thought of a csgo item value calculator.
Then I thought how would I get the prices of the items.
So my question is how do I get information from ex. //
http://steamcommunity.com/market/listings/730/Chroma%202%20Case And retrieve the price of the item, which is in this: market_commodity_orders_header_promote
What I would recommend is getting some kind of API tool such as PostMan or Fiddler and use them to sniff the website. See if its calling any kind of API, and if it is, see if you can take advantage of that API to do what you need to do.
Website Scraping is also a valid option. Either way you should have a look and see which method would work best for you given your problem and experience level.
The most important part is research research research. Google everything before you ask. We all wish you the best of luck!

How to keep track of downloads using python or any other language? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Well this is just something i am wondering if it is possible.
I have a router and n number of people are connected to it. Now i want to track the downloads , like which person [computer] downloaded what and how much [the size] and finally store the information somewhere in a file / database.
Is this possible? Please don't recommend software, i want to write a code that will run continuously and keep checking for downloads. Downloads should include even the surfing, like when you open facebook some data is downloaded, even that should be added.
If not possible for router is it possible for individual computer?
It would be really useful if it works for a router situation.
Thanks for your help in advance.

How can I write a program to burn CD/DVD by Java? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I've searched in Internet about burning CD/DVD that can work either in Linux and Windows. but unfortunately, I couldn't find a good solution.
Somebody suggested me, use commands line that related to Operating system. but I think it'd better write a good code that be able to use everywhere.
All my needs are described below:
get list of accessible driver name
get list of writer speed that any driver can do.
burn CD/DVD
So, If you can solve this problem, help me.
Thank you

Access website without browser [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am just learning java. I just want to make a simple application to access a web-site.
there is a website onto which i want to log-in through java:
and then interact with it through my interface, basically after log in, i would be writing in some text boxes and sending it.
I tried many places to do it, studied HTTP protocol but still cant make it.
can someone help me out?
Accessing a web site, logging in and interacting with forms on it is somewhat complex work, so it might not be the best choice for a first java project.
But if you want to do it, you should probably use Apache HttpComponents/HttpClient.
There are useful examples at the above link as well, which may help you get started.

Categories