| Thread | Last Post | Replies |
|
| JNI C++ object | 29 Mar 2006 08:37 GMT | 8 |
I am working with JNI and I have a problem with my program. In my java application there are some objects in C++ that I would like to link them with a java object, is it possible to do? Should I use or manage the VM?
|
| Chunked GZIP processing using Java Sockets | 29 Mar 2006 08:26 GMT | 10 |
My java client program is reading web sites using low level sockets. The response from the web site HTML is chunked and gzipped. I am aware of the HTTPClient and JRE's HTTPUrlConnection APIs that can handle this directly, however; I must use the low level socket due to the error
|
| subclassing FileReader | 29 Mar 2006 07:16 GMT | 3 |
When I try to subclass FileReader: package java.io; // this is true even if I put this in an other package and import java.io.* public class MockFileReader extends FileReader
|
| Parsoft Jtest: Anyone use it? | 29 Mar 2006 02:33 GMT | 2 |
Anyone using parasoft jtest? It writes unit tests for you. Too good to be true?
|
| Signing an applet packaged as a .cab on Windows XP | 29 Mar 2006 02:17 GMT | 3 |
Hi. I have an applet which I need to make a .cab version of, and sign this. This only works on a machine which has the Microsoft JVM installed, because: signcode -j javasign.dll ... requires DLLs from the MS JVM.
|
| J2ME, destroyApp(false) can't close program. | 29 Mar 2006 01:57 GMT | 2 |
My program: public class Boki extends MIDlet implements Runnable{ ... ...
|
| synchronisation problem | 29 Mar 2006 00:44 GMT | 4 |
I was doing test to understand threading better (haven't done much of thread programming at all, been a process guy instead). And I was trying to create an object and have two threads work on it at the same time, and I noticed something I don't quite understand.
|
| how to know what jar file contain my needed class | 28 Mar 2006 23:31 GMT | 4 |
When I am using other people's code(say jwsdp tutorial examples) and try to compile it. sometimes I got compile error. For example, it says it needs the following package /class: com.sun.tools.xjc.api
|
| Java Regex Problem | 28 Mar 2006 22:37 GMT | 7 |
I want to extract all the content between HTML <li> tags. I'm using regular expressions and I'm not capturing every match with my regex. What I have is: String regex = "<li>(.*)</li>";
|
| ComboBox: keep the pull down? | 28 Mar 2006 22:31 GMT | 6 |
Is there a method to keep the pull down for a ComboBox, i.e., the user does not have to click on the ComboBox in order to pull down the list? Thanks.
|
| What is the best charset to choose for binary serialization | 28 Mar 2006 20:08 GMT | 13 |
i need to binary serialize some strings in a Java application. Since there is no restriction at all on the strings, i need to handle all the characters that java.lang.String handles. What is the "innner" charset of String class? Since Java must store
|
| How do i write a code that reads a site, then takes the neccisary information | 28 Mar 2006 19:25 GMT | 5 |
I want to make a program that takes the character stats from the runescape highscore website (by the user entering their name) and then takes their levels and adds them to the corrisponding int value ex.
|
| java or c# Please help I am going in circles tring to decide | 28 Mar 2006 18:56 GMT | 3 |
I am starting a new application, it needs to use db such as access or msde. I know I can do this easily in c# or Java but my question is can I distribute a package as easy if it is created with java and say derby db as I can with windows based. It needs to be click to install ...
|
| What was that Java code analyzer link someone posted a few days ago? | 28 Mar 2006 16:20 GMT | 6 |
Someone quite recently posted a link here to a very useful looking Java code analyzer (in the last few days). Try as I may, I can't find the original post, and I can't find the web page via Google (I remember what it looks like and none of the searches
|
| ServerSockets - When Is It Closed/Not Connected? | 28 Mar 2006 16:11 GMT | 3 |
I have a ServerSocket that creates a Socket with ServerSocket.accept(). I then read data from that Socket's InputStream. I'm sending data to it with netcat. When I stop netcat, there is no indication that I can see that the connection is gone and netcat's client socket is gone. ...
|