This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
i want to test the stringtokenizer to see if the text between to comma delimeters is there or not ie if i read in this text (hello,how,,,are,you)from a file i want the output to be hello how are you could anyone please adjust my code so it will woke please thanks ben
import java.io.*; import java.util.*; import java.lang.*; import java.util.StringTokenizer.*; public class ReadSource {
try { boolean rt = false; int ic = 1; String Scounter = new String(); int icounter = 1; Hashtable hash = new Hashtable(100); FileReader file = new FileReader("Work.txt"); BufferedReader buff = new BufferedReader(file); String line = buff.readLine(); StringTokenizer s = null; boolean eof = false; while (!eof){ s = new StringTokenizer(line,",",true); while (s.hasMoreTokens()) { String s2 = s.nextToken(); Scounter = String.valueOf(icounter); if (s2.equals(",")) hash.put(Scounter,s2); if (rt) ( s2.equals(""));
Hi Ben, You could do something like the following (you'll likely need to tweak the code to fit your needs). I would recommend trying to keep things simple (no need to use Hashtables, etc.). There are many ways that this can be accomplished - the code below is just an example. Also, I trust that you will understand the concepts behind the example code below and not just apply the answer directly in what you need to do... -Biju
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.