Microsoft
Software
Hardware
Network
Question : Java Programing
public class ReadBackwards
{
public static void main (String[]args)
{
String thisLine;
String[]fullText = new String[3];
int counter = 0;
String fileName = "backwards.java";
/**
* This will collect your input in a StringBuffer
* until you type "quit"
*/
StringBuffer sb = new StringBuffer();
try {
BufferedReader in = new BufferedReader(new InputStreamReader(System.i
n));
String str = "";
do {
sb.append(str);
System.out.println("Input was: " + str + " length:" + str.length());
System.out.println(">promp
t ");
str = in.readLine();
}while(! str.equals("quit"));
} catch(IOException e) {System.out.println(e.getM
essage());
}
System.out.println("All input: " + sb.toString());
saveIt(fileName, sb.toString());
String s = readIt(fileName);
System.out.println("From file: " + s);
s = reverseIt(s);
System.out.println("From reverse: " + s);
System.out.println("End of program.");
}
public static void saveIt(String fileName, String s) {
try {
BufferedWriter out = new BufferedWriter(new FileWriter(fileName));
out.write(s);
out.close();
} catch(IOException ex) {ex.printStackTrace(); }
}
public static String readIt(String fileName){
StringBuffer sb = new StringBuffer();
try {
String str;
BufferedReader in = new BufferedReader(new FileReader(fileName));
while((str = in.readLine()) != null)
sb.append(str);
} catch(IOException ex) {System.out.println(ex.get
Message())
; }
return(sb.toString());
}
public static String reverseIt(String s) {
StringBuffer sb = new StringBuffer();
for(int i = s.length()-1; i >= 0; i--) {
sb.append(s.charAt(i));
}
return(sb.toString());
}
}
Can someone Help, see the errors...
C:\prg421>javac ReadBackwards.java
ReadBackwards.java:18: cannot find symbol
symbol : class BufferedReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new InputStreamReader(Syst
em.in));
^
ReadBackwards.java:18: cannot find symbol
symbol : class BufferedReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new InputStreamReader(Syst
em.in));
^
ReadBackwards.java:18: cannot find symbol
symbol : class InputStreamReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new InputStreamReader(Syst
em.in));
^
ReadBackwards.java:28: cannot find symbol
symbol : class IOException
location: class ReadBackwards
} catch(IOException e) {System.out.println(e.getM
essage());
}
^
ReadBackwards.java:41: cannot find symbol
symbol : class BufferedWriter
location: class ReadBackwards
BufferedWriter out = new BufferedWriter(new FileWriter(fileName)
);
^
ReadBackwards.java:41: cannot find symbol
symbol : class BufferedWriter
location: class ReadBackwards
BufferedWriter out = new BufferedWriter(new FileWriter(fileName)
);
^
ReadBackwards.java:41: cannot find symbol
symbol : class FileWriter
location: class ReadBackwards
BufferedWriter out = new BufferedWriter(new FileWriter(fileName)
);
^
ReadBackwards.java:44: cannot find symbol
symbol : class IOException
location: class ReadBackwards
} catch(IOException ex) {ex.printStackTrace(); }
^
ReadBackwards.java:51: cannot find symbol
symbol : class BufferedReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new FileReader(fileName
));
^
ReadBackwards.java:51: cannot find symbol
symbol : class BufferedReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new FileReader(fileName
));
^
ReadBackwards.java:51: cannot find symbol
symbol : class FileReader
location: class ReadBackwards
BufferedReader in = new BufferedReader(new FileReader(fileName
));
^
ReadBackwards.java:55: cannot find symbol
symbol : class IOException
location: class ReadBackwards
} catch(IOException ex) {System.out.println(ex.get
Message())
; }
^
12 errors
C:\prg421>
Answer : Java Programing
You miss your imports
You need:
import java.io. BufferedReader;
import java.io.IOException;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.FileReader;
import java.io.InputStreamReader;
at the top of your class
Random Solutions
Individual User Bandwidth Usage Monitor from Server
Stop: c0000218 {Registry File Failure} \systemroot\system32\confi
g\SECURITY
Unable to relay CRM email
Smtp Email Failure
Virus/worm in MS Exchange 2007 on SBS 2008 attaching unknown BCC addresses
Use VB in Excel to pull data from Access
How to resolve slow disk writes on Win2003 SBS on Dell PowerEdge server?
I installed server 2008 on dell 2650 but i cant boot on to the os with out the dvd in the drive
Controller reached the maximum of 10 restarts per 24 hours
DNS not resolving internal servers properly all of the time