0
votes
4answers
146 views
constructor problem in java
public class StateQueryFilter extends FieldQueryFilter {
// private static final Log LOG = LogFactory.getLog(RecommendedParser.class.getName());
public StateQueryFilter() {
…
2
votes
7answers
988 views
How do I trim a file extension from a String in Java?
What's the most efficient way to trim the suffix in Java, like this:
title part1.txt
title part2.html
=>
title part1
title part2
…
3
votes
5answers
282 views
How to execute some function in eclipse while debugging a java program?
Like firebug for debugging javascript,
is there such a feature in eclipse? or do I need a plugin?
…
1
vote
8answers
1k views
how to parse this string in java?
"prefix/dir1/dir2/dir3/dir4/.."
how to parse the dir1,dir2 .. value out of the above string in JAVA?
The prefix here can be :
/usr/local/apache2/resumes
…
1
vote
4answers
168 views
How to analyse which jar file is used in a JAVA program?
Suppose there is a jar file named callme.jar
and it's located in several directories,
how to analyse which one of them is used at run-time?
…
0
votes
2answers
151 views
In Java, how can I avoid an HTTP 404 getting a file:// URL with special characters in it?
First I'll provide a tiny code snippet here:
String path = "".equals(url.getPath()) ? "/" : url.getPath();
java.io.File f = new java.io.File(path);
if (!f.exists()) {
this.code …
1
vote
6answers
215 views
how to process string in java
I want to make strings like "a b c" to "prefix_a prefix_b prefix_c"
how to do that in java?
…
1
vote
2answers
103 views
what are those files with “~” in java projects?
I've never seen that,internally generated?How does it work?
Can check what I meen here:
…
0
votes
10answers
539 views
Java string comparison?
String parts is String[6]:
[231, CA-California, Sacramento-155328, aleee, Customer Service Clerk, Alegra Keith.doc.txt]
But when I compare parts[0] with "23 …
3
votes
8answers
452 views
How is import done in Java?
For instance
import org.apache.nutch.plugin.Extension,
though used many times,
I've no much idea what is done essentially.
EDIT: I …
1
vote
3answers
91 views
what does each of these options mean?
java -Djava.library.path=../lib
-classpath ../lib/wrappertest.jar:../lib/wrapper.jar:Service.jar:../lib/mysql-connector-java-3.0.17-ga-bin.jar
-Dwrapper.key=Ksxtsmvr7iAmVJ-T
…
0
votes
6answers
266 views
1
vote
5answers
184 views
java command line execution
C:\Program Files\Java\jdk1.6.0_05\CoreJava\v1\v1ch2\Welcome>javac Welcome.java
C:\Program Files\Java\jdk1.6.0_05\CoreJava\v1\v1ch2\Welcome>java Welcome.class
Exception in thread "mai …
1
vote
5answers
319 views
what are the $1 in class file?
C:\Program Files\Java\jdk1.6.0_05\CoreJava\v1\v1ch2\WelcomeApplet>dir
Volume in drive C has no label.
Volume Serial Number is 2041-64E7
Directory of C:\Program Files\Java\jdk1.6.0_05\CoreJava …
-3
votes
3answers
93 views
How to install Java environment most easily on windows?
Last time I came into wampserver for PHP/MySQL/Apache ,which saved me a lot of time.
Now I need to install java,
is there any software to recommend?
…
