| Thread | Last Post | Replies |
|
| Child window | 05 Oct 2007 09:57 GMT | 1 |
In my application, I have two JFrames, the second one is supposed to be on top of the first one, even if the first one has the focus. I cannot find how to do that. I have done some research, and seen that the Window object constructor
|
| Java Applet not working in web browser | 05 Oct 2007 08:42 GMT | 3 |
I've developed a simple Java Applet using Eclipse -- it works just fine from within Eclipse, but I can't get it to render from within a web browser. I have copied the following files into a folder: index.html // the webpage i'm trying to view the applet from
|
| How to check object(button) exist in webpage or not | 05 Oct 2007 08:11 GMT | 1 |
I am doing a testing on Web application. and wanna use QTP to check whether the button exists or not in one page, How to realize it? I tried: Browser("..").Page("...").WebButton("Exist").Exist against a
|
| jdbc/mypool webserver 7 | 05 Oct 2007 06:55 GMT | 5 |
This is how my sun-web.xml looks like {code}<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN" "http://www.sun.com/software/
|
| Why Re-implement Interface | 05 Oct 2007 06:27 GMT | 4 |
In Java API, we see such code: public class ArrayList extends AbstractList implements List, RandomAccess, Cloneable, Serializable
|
| Problem with basic JFrame layout manager | 05 Oct 2007 04:52 GMT | 4 |
Hey all, here's a problem I can't lick. Using just a basic JFrame, it should have a basic BorderLayout layout manager by default. The docs strongly imply it, and it's manifest in the code (source and runtime).
|
| Generating HTML | 05 Oct 2007 04:27 GMT | 6 |
I am attempting to generate HTML within my application for printing documents. Due to various restrictions, I am using the javax.swing.text.html.HTMLDocument package. That can't change (unless it is impossible to do what I want to do).
|
| Can't use JDK 1.4 jar file (javax.crypto) in JDK 1.3 | 05 Oct 2007 02:15 GMT | 8 |
I'm running WSAD IDE and 1.3 of JDK. I need to use the javax.crypto package which I have obtained the jar file for (from JDK 1.4.2) and plugged in to my web app in 1.3. Everything compiles OK but when the server is started I get a security error. I've done some googling and
|
| java unchecked or unsafe operations error | 05 Oct 2007 01:50 GMT | 3 |
I am getting the following error Note: C:\Documents and Settings\Eugene\Desktop\client\LocalBoard.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
|
| Do I need a factory? | 04 Oct 2007 22:21 GMT | 7 |
I have a class with 20+ class variables, mostly String and Date types. The constructor of this class receives a String which is raw text that has to be parsed. The parsing will extract data to populate the class variables.
|
| Java RE Logging Level | 04 Oct 2007 22:16 GMT | 1 |
I want to set the logging level of the java VM. Is it even possible to increase the logging output of standard java code? bye bembi
|
| C++ , Java Kommunizieren | 04 Oct 2007 21:21 GMT | 19 |
ich habe zwei Programme , der eine in Java der andere in C++. die zwei Programme kommunizieren miteinander, (datenaustausch, methodenaufrufe...) welche Technicken kann ich da anwenden ?
|
| Open Command Window when Double Clicking jar | 04 Oct 2007 20:31 GMT | 1 |
I have jar file which is nothing more than a command line application (think Hello World). It works fine from the command prompt but I would like it to work when double clicking it. When I do so nothing happen. I assume that the application actually runs in the background.
|
| Designing for protocol independence | 04 Oct 2007 19:48 GMT | 2 |
I'm currently developing a chat client. I want to design the software for protocol independence. It ought to be a very simple design, I don't want to create a general purpose protocol (framework). The protocol consists mainly of textual data to be put on and read from
|
| JAI optimizing.. | 04 Oct 2007 17:06 GMT | 3 |
I did a little benchmark on the speedup that JAI can bring in computing the point with minimum distance from a given source point (x,y) out of an array of x,y coordinates. I did this both with JAI and by brute-forcing it using a simple
|