Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by martyr

  1. martyr

    Using a Class to run a java compiler and execute a java program

    Hi Josh! I shall assume that you plan to have a button in your editor that says "compile" or somthin like that.. ok? =) you might wish to check out these few things: 1. the compile syntax (and how to dynamically change it, eg. modifying the jdk path, classpath, sourcepath and output...
  2. martyr

    SocketException - Connection reset by peer : JVM_recv in socket in inp

    Hi Ben, you might want to change to the red pieces of code below in your Socket Test Class (Test1): public class Test1 { public static void main(String args[]) { try { Socket s = new Socket("localhost", 1234)...
  3. martyr

    Hello, I recently installed JBuild

    Hi Sedj, have you installed jdk1.4 on your machine previously? i think jbuilder5 installation came with jdk1.3XX. you might wish to try re-installing jdk1.4 again. alternatively, you might wish to try specifying the path on the command line instead, like this: eg. c:\jdk1.4\bin\java...
  4. martyr

    Hi - I am a genuine newbie to Java

    Hi Knackers, you might want to rename the getInput method to getInputString so that it can be reused. here's how a getInputInt can be done : public String getInputString(String message) throws IOException { String input; BufferedReader bin = new BufferedReader(new...

Part and Inventory Search

Back
Top