Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
salam
how to change prefix of Logcat for removing all prefix like date and time , ...
Log.i("H", "Hi");
output :
06-02 08:58:22.060: INFO/H(1716): Hi
You can't. But since logcat is just a unix program, you can pipe it into cut or sed to alter your view of it. I don't think I'd ever do that though- the timing data can help solve lots of bugs, and can help you find things like core dumps in the logs.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
So, I have this question here, which has been answered. I'm looking to replicate the marked answer in Java. Is there any way I can do some/most/all of it in Java?
Of course Java can be used to replace grep as seen e.g. in this question.
As you really want extract parameter values from a URL you could e.g. go with this approach, where a simple Java-function returns all parameters and their values as a Map. If you already use a HTTP-related library you may also want to look if they included a similar function.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I got an application that coded with java.
the application have a same window that i can add some text and hit the send button.
it is sending the test to a server and then print it there.
when i'm writing an English letter i have no problem.
when i'm writing Chinese letter , i can see it on the windows , but when hitting the send button the letter is changed to ??.
and the string that i'm sending to the server is ??.
any idea how i can add the Chinese support here ?
by adding to the bat file -Dfile.encoding=GB2312 the java application support the Chinese char.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
Is it possible too call bash script from java ?
and get, set and assign from netbeans
in the past we scripted with putty.
if true where can I learn more about it ?
Any information would be awesome
You could use ProcessBuilder
(there were many similar questions...)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I made a java swing application. Now I want to make it auto log out when user is idle.
Is there any way to detect 'idle' in java swing? I have no idea how to do it.
Check out Application Inactivity for one approach.
in swing you can use System.exit(0); to kill your window in any case. In your case I am guessing that you want to logout after a definite time delay then for that you can use thread with your code.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to install java using windows batch file,means suppose I have jdk1.7.exe file and I want it to convert in batch file.I am totally new to this topic and I am really not getting what to do..?
I am not aware of batch programming too.If someone can help will be appreciated. Any suggetions,links,data most welcome.
Thanks..!!
I guess what you want is install Java in silent mode.
For that, run jdk1.7.exe /s
More information: http://www.java.com/en/download/help/silent_install.xml