| Thread | Last Post | Replies |
|
| Avoid unchecked cast warning | 20 Aug 2005 22:09 GMT | 1 |
I have a generic class, Value<T>, that is most often instantiated dynamically, based on the contents a data file. From the compiler's point of view, this leaves my with an oh-so-useful Value<?>. I am trying to write a method to "narrow" the type of reference to one
|
| Using old classes with new helper JAR | 20 Aug 2005 21:37 GMT | 2 |
Hi..All, In one of our application, we developed/complied a java code which uses couple of 3rd party JAR files. Since last couple of years we have been getting the new/updated JAR files from the 3rd party, but we never
|
| argument transfering in JNI, problem in calling Java GUI | 20 Aug 2005 14:15 GMT | 4 |
Dear friends, I am using JNI to call java from C++, in jdk1.4.1 and Visual C++ 6. It works well, but without argument transfering: (I posted this message here, it is not the same as the 3 messages I
|
| JSP, Connecting to SQL throws exception | 20 Aug 2005 13:54 GMT | 4 |
I have a server that is hosting one of my websites. The website consists of servlets, JSPs and HTML. When a user logs in to the website, a servlet will query the SQL database to see if the username and password exist in the database.
|
| Hide URL inside a jsp page | 20 Aug 2005 11:01 GMT | 2 |
I am developing a sample java application, where a signed applet sends some data from client using showDocument() method,( which pass the data using get method). The data gets submitted to a JSP page(in my program, mypage.jsp) and and after doing some operations, i pass the request ...
|
| Passing parameters with reflection | 20 Aug 2005 10:56 GMT | 3 |
I'm trying to create a class instance dynamically using reflection. I can do it if I want to use the default constructor (i.e. no parameters), and I also found an example how to have it call the constructor with parameters if the parameters are a privative JAVA type
|
| Java Applet Failed to Load | 20 Aug 2005 10:25 GMT | 2 |
Guys, As a .NET developer i am having a bit of a problem trying to figure out whats wrong with this Java Embedded application i was asked to deploy via IIS 6.0. THis application works just fine when installed locally
|
| Connecting to dynamically generated data | 20 Aug 2005 10:23 GMT | 4 |
Hello all, this is my first time posting to a Usenet group, so please forgive me for my "green-ness." Anyway, my problem is this: I need to connect to a website that provides current and historical weather data and does so through a web interface. To get the information you pass it
|
| Unix permissions in Java | 20 Aug 2005 04:15 GMT | 5 |
i am going to explain this as best i can. we are running on a UNIX system. my question i think concerns the Java runtime exec. (or maybe Java itself).
|
| get, set, create | 20 Aug 2005 02:47 GMT | 4 |
If a class has getX (optional) setX most likely there is no createX
|
| The Jar tool? | 20 Aug 2005 01:26 GMT | 28 |
How do I get the JAR tool? I installed the latest JDK, but to no avail. I need to package my application, but I need that executable! I can't find it anywhere. Thanks for any and all help.
|
| Serializing beans. Change in code makes old files unreadable. | 19 Aug 2005 22:22 GMT | 2 |
Another question about serialization. I am looking to find something out which I know I could write a test program to solve but... I have a bean that holds a lot of data and has a few methods. These beans are written to file and the files are read after hours and processing is
|
| Running out of memory using FileChannel.map() | 19 Aug 2005 17:27 GMT | 12 |
I'm using FileChannel.map() to read through large image files. I have a utility function to return a ByteBuffer from a file: public static ByteBuffer map( File file ) throws IOException { final FileInputStream fis = new FileInputStream( file );
|
| Deploying J2EE application | 19 Aug 2005 14:03 GMT | 1 |
I have a small application I want to package up, it has a small configuration database and a property file to point to the config databases. Is it possible to package up a WAR file that I can ship, the user can install and then present the user with a configuration screen to set ...
|
| 16 components in class file | 19 Aug 2005 11:42 GMT | 3 |
Hi,I am just the beginner in java.I know that there are 16 components in java class file.In that 9 components are unreadable.what are these and how to identify these components?
|