| Thread | Last Post | Replies |
|
| Obtaining an int element from an arraylist? | 15 May 2005 06:53 GMT | 10 |
I am trying to recover an integer from an arraylist: ArrayList pathlist = new ArrayList(); pathlist has previously been populated with integers: public void AddEdgeAndNodeToPath(int e, int n) {
|
| void methods and "return" | 15 May 2005 03:50 GMT | 10 |
void methods cannot return values, however, i noticed that i can still use "return" without any value to exit a method like this: public void myMethod(int arg0) {
|
| how to find the class of an object? | 15 May 2005 03:18 GMT | 3 |
If I pass an object reference(JComponent) to a method I want to be able to find out what class of omponent it is; JTextField, JComboBox etc... Is there a way to do this? No "comparable" bull please. Sean
|
| netbeans project layout | 15 May 2005 03:06 GMT | 1 |
I'm working on a project called Mail in netbeans that has two .java files, one called Mail, and the other called eProfiles with a class called eProfiles that has a static function in it that I want to call from Mail. How do I reference the function in the Mail class? I tried
|
| Printing EPS (embedded postscript) from Java. | 15 May 2005 01:46 GMT | 1 |
I need to print .eps (also called .epsf, .epi, .epsi) from inside a java program. My target platforms are windows and mac-- although windows is first. The new 1.4 printing API has aupport for printing normal postscript
|
| Box, Boxlayout problem | 15 May 2005 01:36 GMT | 3 |
here is the code Box form = Box.createVerticalBox(); form.setBorder(BorderFactory.createRaisedBevelBorder()); // Put form fields here
|
| print a webpage | 14 May 2005 22:56 GMT | 1 |
Hallo Programmers out there... I have a simple (but complex) question... haha, never hear of that before... simple but complex: In an applet, I want to:
|
| Unresolve Symbol | 14 May 2005 22:22 GMT | 1 |
Tried the Netbean sample and received an unresolved symbol. /* * Main.java *
|
| Profiling Servlets and JSPs | 14 May 2005 21:13 GMT | 3 |
I am trying to find some software that will help me profile a webstie consisting almost entirely of Servlets and JSPs. This website accesses a java server that is running on Tomcat on a Solaris 8 machine. There are no JVMs running on the site.
|
| organizer/agenda in java... | 14 May 2005 17:44 GMT | 3 |
sorry about that post, i know that most programmers don't like that kind of asks.. Im studying IT and have java programming, but I don't like it and just want to pass it... I have to write simple program- an organizer. I have idea, but don't know how to start with it. Can
|
| An idea | 14 May 2005 17:21 GMT | 10 |
Last night I was working on some ideas for my current project, but got sidetracked while playing with the object persistence and came up with an idea for a more general persistence system. I've not really given it a *lot* of thought yet but would be interested in anyone's thoughts.. ...
|
| Picture scaling - memory issues | 14 May 2005 13:05 GMT | 3 |
In my app people can load a picture, which I then show in a scaled down version. To do the scaling I follow the sample code as shown here: http://javaalmanac.com/egs/java.awt.image/CreateTxImage.html All this works fine, though sometimes if a user loads in a very large
|
| Java Software Dev Question | 14 May 2005 12:23 GMT | 1 |
I am not sure if this is the right forum to post this, so I am sorry if it isn't. I am knew to java software development using the Sun Java plugins. My company has released a beta version of some software that is targeted for
|
| JOptionPane needs help | 14 May 2005 09:21 GMT | 4 |
I have a JOptionPane that allow me select an object (inside a vector "allPeople"). After selecting an object in this JOptionPane, I want to have an another JOptionPane to confirm that sellection with three choices; YES, NO, CANCEL
|
| Class in another file | 14 May 2005 09:17 GMT | 5 |
I am very (very very) new to java and have what I am sure is a simple problem that I hope someone can help with. I have two .java files. The first has public final class FormatSWN {
|