| Thread | Last Post | Replies |
|
| "String index out of range -1" ACK!! | 06 Nov 2004 02:58 GMT | 2 |
My task is to code an applet that should take 2 fractions and either add, subtract, multiply, or divide them (depending on which JButton the user uses). Then, the fraction is to be converted to lowest terms. Also the fractions will be entered in in terms of 2/5 for "two-fifths".
|
| form processing w/servlets.. | 05 Nov 2004 22:46 GMT | 5 |
now that, thanks to the help of many in this ng, I have figured out how to run basic servlets, I'm trying to digest the nitty-gritty of how you actually process forms.. in servlet to do this at http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-Form-Data.html
|
| traversing a class hierarchy | 05 Nov 2004 20:27 GMT | 3 |
I'm not sure how I can approach the following problem: I have some java code that does import SomePackage; at the beginning. Now I would like to go through the class hierarchy
|
| Huge attachment | 05 Nov 2004 19:05 GMT | 1 |
Is there a way to send email with a huge (30MB) without exception (Message exceeds maximum fixed size...)? If I change SMTP settings it will works, but I try to find another more general solution. How could I send message in parts? As I know JavaMail do not support this ...
|
| Making the result of sums in Java programs round to the nearest whole numnber? | 05 Nov 2004 17:01 GMT | 10 |
How can I make the result of (((a * b) + (c * (100 - b))) /100) round itself to the nearest whole number?
|
| How can I use class FileInputStream as a reverse of FileOutputStream? | 05 Nov 2004 11:11 GMT | 2 |
I have this program that works using class FileOutputStream: // WriteText.java // writes a text in an ascii file import java.io.*;
|
| Regular Expression Creator | 05 Nov 2004 11:08 GMT | 4 |
I know that there is this java.util.regex package which can be used for doing patten matching on text. But is there a java program/application which will generate a regular expression for a given string? In other words, if I give "Gabriel" as the input, it
|
| Download an API of java???? | 05 Nov 2004 10:04 GMT | 2 |
I need download the API of axis for java to local, to view it offline. Do you know if some web has APIs in a .zip o another downloaded archive???? (or a program that download all api without i have to browser all pages)
|
| finding strings in a text file help | 05 Nov 2004 09:52 GMT | 1 |
Hi there, i am a beginner at java and i am trying to implement a lexical analzyer that reads through a text file of code and determines between strings, digits and reserved words and then prints them out in order
|
| A little puzzle involving servlet parameter passing | 05 Nov 2004 02:38 GMT | 3 |
Anyone who wouldn't mind helping me out with a servlet interaction puzzle, please read on! I'm putting together a piece of a slightly larger database project involving servlets and an oracle database. The database holds an
|
| modifying audio clips | 04 Nov 2004 18:56 GMT | 3 |
I would like to be able to play two separate audio clips, asynchronously, on the left and right stereo channels of my sound card (I'm done with this year's haunted house and planning for next year).
|
| Java application developped under Linux running ridiculously slow under Windows | 04 Nov 2004 18:49 GMT | 13 |
I have been working with a time-criticial application written in Java by my predecessors in the lab. It's a server that keeps track of objects running around in real time, with clients connecting via TCP/IP to get information about those objects. The clients can then display that ...
|
| launching a program from a Swing GUI | 04 Nov 2004 18:35 GMT | 1 |
Can someone point me to a URL where I can look at sample code for launching a program from a Swing GUI. In my case I'd like to use a FileChooser and click on a Shell script to start a program which displays info.
|
| Getting millisecond-precision time out of a Time object? | 04 Nov 2004 18:33 GMT | 10 |
Is there any way to get a millisecond-precision time (hh:mm:ss.sss) out of a Time object? Time class's toString() method only returns the time at one-second precision (hh:mm:ss), which is not accurate enough for my purposes.
|
| quick newbie GUI question | 04 Nov 2004 16:52 GMT | 7 |
I want to make a window GUI that contains the following: (top) - 3 tabs leading to League, Player, and Club menus (default is to display League). (underneath tabs) - a main frame with various nested panels.
|