| Thread | Last Post | Replies |
|
| input error I've never before encountered | 27 Jul 2005 00:18 GMT | 5 |
I recently reformatted my HDD, and subsequently reinstalled NetBeans IDE. Now, none of my Java apps will function properly, because the system returns the null value for all instances of System.in. For example, the following method simply prints on the screen, "null". Does ...
|
| Extracting bolds and italics from HTML | 26 Jul 2005 19:27 GMT | 1 |
I am trying to make a web crawler which will be topic focused. For this, I have to make some calculations on the contents of url before adding that url into my database. I had found a very useful program of Word Count from sun java forum,
|
| Java bindings for IPTABLES | 26 Jul 2005 18:39 GMT | 3 |
I guess this is more javish than linuxish question... I'm looking for (preferably JNI) bindings to linux' IPTABLES. I need to create/review/update/delete firewall rules from Java. One thing I can do now is to call 'iptables' command and parse
|
| Crypo API: Reading key from file | 26 Jul 2005 18:31 GMT | 5 |
how do I convert a byte[] which contains a private RSA key to an instance of java.security.PrivateKey? The byte[] was obtained with PrivateKey.getEncoded(), and I would expect a complementary API function to convert the byte[] back to a PrivateKey,
|
| why UndatistiedLinkError in JNI ? | 26 Jul 2005 18:10 GMT | 3 |
Dear friends, I tried to call c++ codes from Java, so I used JNI: Following the instruction of java JNI official website, I succeeded in calling HelloWorld.cpp from Java.
|
| Simple Hibernate question | 26 Jul 2005 15:52 GMT | 4 |
Can you use Hibernate with an existing database? Or does Hibernate create all the tables it needs to, and you are not supposed to mess with the db yourself?
|
| Apache Axis Timeout setting, wsdd Web service | 26 Jul 2005 12:26 GMT | 1 |
I'm getting a timeout error when calling the java web service server with my client. It only happens when i have files over 80k. I tried to put this in the config wsdd file, but it didn't work. This is my error: (calling with a .net client
|
| Sending parameters using newInstance()? | 26 Jul 2005 11:21 GMT | 4 |
Was wondering when using something like this theClass= (myClass)Class.forName(className).newInstance(); it calls the classes (className in this case) default constructor with no arguments right? How do you send values/arguments to it? Or can't
|
| Eclipse editor - slowwwwwwww? | 26 Jul 2005 09:47 GMT | 7 |
does any one know if the version 3.0 (build: ) of Eclipse has a memory leak? On large projects, the editor is slow to begin with, but when it starts, i see that the jvm hogs about 60MB. after about 1 hour, that reaches near 100MB. at that point, the editor just pretty much comes
|
| How Javac works | 26 Jul 2005 08:56 GMT | 13 |
I have been reorganising my entire code base so that dependencies don't force me to use Java 1.5 when I don't really need it. I have discovered something that surprised me. If I delete all the class files in the universe, and compile one class
|
| Java API to convert Microsoft Word to PDF? | 26 Jul 2005 08:32 GMT | 5 |
Hello all. Sorry for the cross-post. I posted in the "Java Programming Language" group thinking I was in this group, "comp.lang.java.programmer" ... I have seen gazillions of messages about this subject, and have
|
| IS CEclipse well suited for GUI development in Java too? | 26 Jul 2005 08:23 GMT | 3 |
new "to this stuff", planning to use java shortly. For GUI development is Eclipse, or Jbuilder best suited? Will Eclipse support something like Delphi, QT architecht, or Kdevelop? Thanks for your comments, advises.
|
| Any ideas for a portfolio? | 26 Jul 2005 08:18 GMT | 2 |
Any suggestion for a simple yet complex Java application for a job seeking portfolio??
|
| Some REALLY basic questions about versions | 26 Jul 2005 07:59 GMT | 6 |
New to Java. What is the difference between an SDK and a JDK? I see that there is SDK 1.4 and JDK 5.0. Should I use one over the other? What is the difference between Java Studio Creator and Net Beans? Any recommendations?
|
| ASCII Hex string to character conversion | 26 Jul 2005 07:44 GMT | 9 |
I am trying to find a way to convert a two-digit hexi-decimal String representation of an ASCII character into its ASCII character value. For example, the ASCII hex String "4A415641" would convert to the String "JAVA".
|