|
First
|
Prev |
Next
|
Last
Pages: 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
Inheritance Hi All, I wish to to if there is any way by which we can access a method of the Super Base class. (We can not modify base class and super base class and the method to be accessed has been overridden in both the classes.) Thanks a lot Mohit Garg ... 19 Apr 2006 04:59
How to force Windows newLine Hi, I've a problem with new line character. I am in Windows platform but when I write a file with a BufferedWitter with println I obtain the character "\n" x0D like separator (Unix Separator). My System property line.separator is "\r\n". Can someone tell me how can I obtain files with the correct \r\n Windows... 17 Apr 2006 16:06
about javac default constructor i had a question regarding default constructor i.e how the javac uses the default constructor after creating it and in how many ways it will be used ... 15 Apr 2006 13:20
com.sun.mirror.apt I am running the following java on a Windows XP Home Ed PC java version "1.5.0_06" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing) I am trying to use code that wants to import com.sun.mirror.apt But my IDE (Eclipse) ... 15 Apr 2006 20:32
What's java equivalent of C's argv[ 0 ]? I thought I knew this once, but maybe I was just fooling myself. this.getClass().getName() doesn't work from static methods, so it doesn't work from main(). The reason I want to do such a silly thing is that I don't want to go looking for the bare string "MainClass" when I decide to change the name of the Main... 13 May 2006 08:36
different screen resolutions Hi, what is the best way to handle different screen resolutions for java apps. I.E if you have existing code that was written to handle 800*600 , using gridbag layouts and frames currently set to (767x556) obviously at 1024*760 -1280x1024 things are going to be a bit spartan. any ideas? Steve ... 14 Apr 2006 21:12
modem initialization string hi, i'm using javax.comm api to interface to COM ports / modem. the parity, baud rate, stop bits and databits were set using SerialPort.setSerialPortParams(). the trouble is, i don't know where to set the initialization string. any help is appreciated. crash.test.dummy ... 13 Apr 2006 19:19
java.lang.NoClassDefFoundError (wrong name) I have file foo.java that doesn't belong to any package. in $HOME/scripts/foo.java, I have: import.com.td.util.*; bar myBar = new myBar(); myBar.createFile( ); I have verified that bar.class is in $HOME/java_src/classes/com/td/util bar.java is located in $HOME/java_src/com/td/util in bar.java, I... 13 Apr 2006 14:07
Try to install JSIM I am using LInux - Kanotix ( Debian ) and using Netbeans as IDE for java.To install I did all this things; export JAVA_HOME $HOME/java/jdk1.5.0 export JSIM_HOME $HOME/JSIM export CLASSPATH $JSIM_HOME/.:$CLASSPATH cd JSIM ant -buildfile JSIMBuild.xml compile Than try to compile an example.It gives the error..... 13 Apr 2006 05:42
A simple question about integer Why does the 2nd line causes an error but not the 1st. Thanks. short s; s=10*2; short s1; s1=s1+2; ... 13 Apr 2006 17:15 |