| Thread | Last Post | Replies |
|
| trying to use javax.comm.properties package under Apple OS X | 27 Jun 2006 12:57 GMT | 7 |
I am currently developing a java application that interfaces a computer to an external device that uses an RS232 port. I have an RS232/USB addapter and the application has been able to successfully interface the computer to the external device using the javax.com.properties
|
| JSP for end-users | 27 Jun 2006 11:46 GMT | 3 |
Our JSP-based app gets distributed to end users, who get to edit and customize the pages. At the moment, we make them put Java code directly in the page to get info out of our app. This is clearly not suitable for non-Java developers.
|
| regular expressions -- how to ignore whitespace | 27 Jun 2006 11:33 GMT | 3 |
I need to extract some data from a web page that I'm parsing, using regular expressions to find matches I'm interested in. In particular, I'm trying to extract the text from between <A> and </A>. The <A> does have several attributes which I don't care about. The reg. exp. I'm
|
| program works on my computer but not on live site? | 27 Jun 2006 11:31 GMT | 3 |
I'm trying to build a small screen scraper to extract info from a certain website, entering a search into a search engine & then parsing the results. I saved a few test pages on my computer to use, which work fine -- everything I'm trying to extract is found & parsed
|
| Bug in Java Reflection Class | 27 Jun 2006 11:23 GMT | 3 |
it seems that there is a bug in java Reflection class [ java.lang.reflect ] that will allow an illegall access permission to private fields and methods. for example take a look at the code below :
|
| getCanonicalPath error on Windows CD drive | 27 Jun 2006 11:18 GMT | 5 |
My backup program is intended to work on both Apple OS X and Windows. It happily reads and writes files on both systems, except when writing to the CD drive on the Windows system. When I use getCanonicalPath, the message from IOException is:
|
| Can I Post Jobs over here? | 27 Jun 2006 10:27 GMT | 3 |
Can anyone let me know, what's the procedure of posting jobs over here. Thanks & Regards, Roopa
|
| Applet - maintain state between destroy() and init() | 27 Jun 2006 09:20 GMT | 3 |
I have a signed applet that appears on every page. I need to save and retrieve an object between page navs. I thought System.properties may be the way, but it seems you can only store Strings. Any other ideas anyone?
|
| Help in Progress Bar ! | 27 Jun 2006 08:46 GMT | 2 |
Hello Dears, i have developed a web application in which i am exporting my reports to pdf. its a time consuming process. I want to have a progress bar that will keep me inform about current progress.
|
| Using separate classpaths for separate classes? | 27 Jun 2006 07:46 GMT | 1 |
I need to use classes that require conflicting classpaths, and I have no access to source code. Can I instantiate a class with one classpath in effect so that all the classes it uses are resolved from their classpath, and then
|
| object serialization for rpc/encoded service | 27 Jun 2006 04:40 GMT | 1 |
I have an rpc/encoded webservice to work with. I modified the wsdl to add a schema in the wsdl:types section so that I can use wsdl2java to generate java objects. The particular implementation is Axis''s version.
|
| JNI C++ interface | 26 Jun 2006 23:06 GMT | 2 |
I am new to Java, I want to access a C++ Class containing function with variable # arguments (vm_args). Could any one suggest me a solution. Thanks in advance Best Regards,
|
| JSP and forms/HTML question | 26 Jun 2006 22:25 GMT | 3 |
I have a lot of forms on a page and each form with a action button that will send the information to the servlets. And after I click the action button, I can only get those information within the form. Is there anyway I can get parameters outside that form at the same time?
|
| Switch statement for strings | 26 Jun 2006 19:58 GMT | 7 |
Is there a popular idiom for a switch statement that takes a string? I want to emulate something roughly like: switch (myString) { case "Apr":
|
| Use of semaphores | 26 Jun 2006 19:11 GMT | 1 |
Obviously the canonical use of semaphores is to ration access to a finite number of resources, say hard disks or memory buffers. It has occurred to me that a semaphore could, in theory, also be used to ration permission to send messages in a TCP-like protocol, where
|