 |
 |
Index ‹ java-programmer
|
- Previous
- 4
- [struts] ActionForm design questionHi,
I've wrote a java application (not a web application) which containg
some bean used extensively in the application.
Now I would like to reuse those bean inside a struts based web
application.
In struts a bean supporting a form must extend ActionForm. I would like
to reuse the beans written for the first application. Is it possible in
some way???
The only way that i saw is to use Bean.Utilis.copyProperties in order
to copy a bean into another.
- 4
- Azureus wont compile coz of 4E4D4554484F440E4350500525Hello people...
So, after dodging Azureus dependancies, this might be the final hurdle
to get Azureus to compile :/
Anyway... I got an internal error (4E4D4554484F440E4350500525)
I got that error when I was installing something called "sed"
(/usr/ports/net/sed ?), but that got resolved once I mounted
linprocfs...
But Azureus refuses to compile...
I googled further more and one site tells me to add -Xint to my java
command line... I added that in the last line of work/azureus file
that was created. And thats how the number of files mentioned in the
output below reduced from 2000 something to 1476... Good thing/bad
thing???
Any ideas how to get this working?
Below from BEGIN to END is the exact console output...
PS: please CC your replies to me coz im not on the list....
=====BEGIN (I'm in directory /usr/ports/net-p2p/azureus)=====
hostname# make install clean
===> Building for azureus-2.4.0.2
Buildfile: build.xml
init:
compile:
[javac] Compiling 1476 source files to /usr/ports/net-p2p/azureus/work/build
[javac] #
[javac] # An unexpected error has been detected by HotSpot Virtual Machine:
[javac] #
[javac] # Internal Error (4E4D4554484F440E4350500525), pid=49360,
tid=0x50f000
[javac] #
[javac] # Java VM: Java HotSpot(TM) 64-Bit Server VM
(diablo-1.5.0_07-b00 mixed mode)
[javac] # An error report file with more information is saved as
hs_err_pid49360.log
[javac] #
[javac] # If you would like to submit a bug report, please write
[javac] # a letter to email***@***.com mailing list
[javac] #
BUILD FAILED
/usr/ports/net-p2p/azureus/work/build.xml:22: Compile failed; see the
compiler error output for details.
Total time: 48 seconds
*** Error code 1
Stop in /usr/ports/net-p2p/azureus.
hostname#
====END====
cheers...
Ahmed
- 5
- editing nodes in JTree, icon problemI have a JTree with a child node that has a dropdown list in it. When I
click on the node to make the list appear, then make a selection, the
icon changes to what looks like a document icon.
My problem is that the document icon stays there after I make the
selection in the dropdown list until I click on another node. It's like
the process of making a selection is unfinished.
Anyone know what that is?
- 5
- Does my panel play hide & seek ?Hi,
In an application, that uses internal frames and the JDesktopPane! I
now want to add a pane to my application to the right side of the
window. But this pane should be hidden. In the sense when i click on a
button, it creep inside slowly and when i click on it, it should creep
out slowly again.
Is such a thing possible with swing? or is there any other way possible
for this?
Plz help,
kind regards,
Rajesh Rapaka.
- 5
- Connecting to db2/400 of AS400 through java throwing SQLExceptionHello,
I am trying to connect to db2/400 of as400 through java in WDSC.
I am usinf the driver ->
com.ibm.db2.jcc.DB2Driver
I have put the db2jcc.jar and db2jcc_license_c.jar in classpath.
I am not ableto connect with db2/400
The code for connecting to the database is follows-->
******************************************************************************
//Connect to a database
try
{
Connection conn = DriverManager.getConnection
("jdbc:db2:192.168.0.10","SAVITA","SAVITA");
}
catch (SQLException e)
{
System.out.println("SQL Exception: ");
}
*******************************************************************************
I am getting the following run time error
SQL Exception
....................................................................................................
Do I have to use other url apart from jdbc:db2:192.168.0.10
I have used jdbc:db2:S650B66E
where S650B66E=system name
In the actual code instead of 192.168.0.10 they have used databasename.
My requirement is , to call stored procedure from db2/400 of as400.
Firstly how do I connect to db2/400?
Can please any body help me out.
Thanks
Regards
Savita
- 6
- Can javac do macro (conditional) compilation?In C/C++ we can do
for example:
#ifdef VERSION_1
// write version 1 codes here
...
#else
// write version 2 codes here
...
#endif
Then when we compile the code with -D option
gcc -DVERSION_1 input_filename.c -o output_filename
This will compile the codes in version 1
gcc input_filename.c -o output_filename
This will compile the codes in version 2
I am just wonder can I use -J option in javac?
If I can, then how do I write the syntax in java codes?
- 8
- Pogo Game, etc
I'm a pogo fan and an anspiring Java programmer/software
deceloper/enginneeer .
I'm curious if maybe the source code could be out on the internet
somewhere .
Do you think that maybe somebody could also explain to me about how
the graphics are created and what libraries are they using to create
game such
as poppit, etc.... I know about swing but isnt swing for creating
windows and
user interfaces ? (kind of like visual basic???) .
I would really apprececiate any input regarding my question .
- 8
- JSpinner with DateModel, setValue not working ?Hi,
I wrote a JSpinner-based Class that I use as a Time Chooser.
The spinner has a DateModel.
My problem is that the setValue does not work : the content of the
spinner is not updated.
Any clue, any one ?
thanks in advance,
--P
the TimeSpinner Class :
package fr.heartbit.viewer;
import javax.swing.*;
import javax.swing.event.*;
import java.text.*;
import java.awt.*;
import java.util.*;
import java.awt.event.*;
import javax.swing.text.*;
public class TimeSpinner
extends JSpinner {
JFormattedTextField tf;
public TimeSpinner(){
super();
final SpinnerDateModel model = new SpinnerDateModel();
this.setModel(model);
JSpinner.DateEditor editor = new
JSpinner.DateEditor(this,"HH:ss:mm");
this.setEditor(editor);
tf = ((JSpinner.DateEditor)this.getEditor()).getTextField();
tf.setEditable(true);
tf.setBackground(Color.white);
tf.setSelectionColor(Color.blue);
tf.setSelectedTextColor(Color.white);
DefaultFormatterFactory factory =
(DefaultFormatterFactory)tf.getFormatterFactory();
DateFormatter formatter =
(DateFormatter)factory.getDefaultFormatter();
formatter.setAllowsInvalid(false);
}
}
- 8
- Application wide variables with Tomcat/AxisHello,
I have installed axis on Tomcat and a few WebServices.
My Problem: I want to have a >>APPLICATION WIDE OBJECT<<, which you can
reach from a WebService as well as a Java Application which is running
on this server.
I would like to have something similar to the Session Object on a Web
Page where you can add and remove items.
Scenario:
-------------
The Programm Codes who share a Class called MyQueue, which is a Class
which holdes
all the processes.
WebService1(Pseudo Code)/**Fills Queque with new Datasets*/
public boolean fillQueue(int GUID, String ProcId){
MyQueue myqueue = getLivingQueue(); //This function shell give
me the actual queque,
//NOT a new one!!
MyQueueDataset oneDataSet= myqueue.create() ;//Create a new
DataSet
//in the Queue.
oneDataSet.setProcId(ProcId);
oneDataSet.setGUID(GUID);
oneDataSet.setStatus("InQueue");
...
return true;
}
WebService2:(Pseudo Code)/*Find out Status of certain Queque*/
public String getStatusOfGUID(int GUID){
MyQueue myqueue = getLivingQueue(); //This function shell give
me the actual queque,
//NOT a new one!!
MyQueueDataset oneDataSet = myqueue.getByGUID(GUID);
return oneDataSet .status;
}
A Job:(Pseudo Code)/*Try to proceed DataSets which havent proceede
yet*/
Class Watcher(){
int static main(){
...
MyQueue myqueue = getLivingQueue();
while(1==1){
ArrayList allJobsNotDone =
myqueue.getAllDataSetsWhichAreNotSuccessFullProceedd()
while(allJobsNotDone.hasNext() ){
MyQueueDataset notJetSuccesfullProceedeJob =
allJobsNotDone.next();
//Now we call a function which lets say try to put the values
//of notJetSuccesfullProceedeJob into a database.
proceed(notJetSuccesfullProceedeJob );
}
}
}
}
Is this possible just with Tomcat?
Do I need a Messaging System (JMS) or something?
I would appreciate help very much.
Thanks in advanced,
Peter
- 8
- 8
- SSL socket in MS SDK 4.0Is there a way to create a an SSL socket using Microsoft SDK 4.0? If
not is it possible to get Suns javax.net.ssl to work with jview?
Any help would be appreciated.
- 13
- Need Java professionalsDear Mr. / Ms,
Hope you are doing fine.
This is Kumar, from Javaji System Solutions Pvt. Ltd. striving to
assist the IT professionals to meet the better opportunity available
in today's IT world.
Below are the permanent job openings on Web Development With our
client in Germany which are all English speaking positions.
Our client is one of the leading Internet destinations operating a
network of websites in seven languages in Europe and the USA. The
company's combination of search, communication services, online
communities, content channels, Internet access, shopping, homepage
building and domain names registration addresses a wide range of
target groups. Our client in European Network provides an attractive
medium not only for consumers but also for advertisers and e-commerce
partners. With a wide network of websites covering Austria, Denmark,
France, Germany, Great Britain, Italy, the Netherlands, Spain,
Switzerland and the USA, Our client has a large geographical reach in
Europe and Northern America.
1. Senior Technical Manager (Java) Communities
2. Technical Project Manager
3. Technical Project Manager CRM&Billing
4. Senior Software Architect
5. Senior Java-Developer Communities
6. Passionierter Developer Communication Product
Please send your updated profile with the following details.
Latest Photo, Expected Salary (In Euros), Availability date, Contact
No's (telephone/Mobile), willing to relocate (Y/N)
Thanks/Regards
Kumar
Re-source coordinator
Javaji System Solutions Pvt. Ltd.,
+44-208-090 2178
email***@***.com
- 14
- 14
- NullPointerException in javax.swing.JComponent.reshapeI sometimes get the following exception in my GUI. It is not always
reproducible, so I don't know when it throws this exception. Any idea
what could be the problem?
java.lang.NullPointerException
at javax.swing.JComponent.reshape(JComponent.java:3507)
at java.awt.Component.setBounds(Component.java:1664)
at java.awt.Component.move(Component.java:1541)
at java.awt.Component.setLocation(Component.java:1533)
at javax.swing.JViewport.setViewPosition(JViewport.java:1075)
at
javax.swing.JViewport.scrollRectToVisible(JViewport.java:396)
at
javax.swing.JComponent.scrollRectToVisible(JComponent.java:2636)
at com.sun.forte.st.mpmt.AnTable$1.run(AnTable.java:651)
at
java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
- 14
- Encrypt Text?What's the best method of text encryption if I wanted to store passwords in
an XML file? Are there any in-built functions of the API which would allow
me to store a key in code and encrypt and decrypt text using this key?
P.S. The project isnt high security so I'm not overly concerned about it
being breakable :)
|
| Author |
Message |
Mike

|
Posted: 2007-3-29 21:29:00 |
Top |
java-programmer, unsigned shift confusion
Hi, I'm testing the unsigned shift operator in Java. Unfortunately, the
value I predicted for the output is 2^17 (131072), not 2^17 - 1
(131071). See below:
"""
class unsignedshift {
public static void main(String args[])
{
int a = -10;
String bs1;
a = a >>> 15;
bs1 = Integer.toBinaryString(a);
System.out.println(bs1);
System.out.println("The length of the binary string is " + bs1.length());
System.out.println("a = " + a);
}
}
"""
Output is:
"""
11111111111111111
The length of the binary string is 17
a = 131071
"""
Where is the difference of one coming from?
Thanks.
--
Mike
|
| |
|
| |
 |
Patricia Shanahan

|
Posted: 2007-3-29 21:52:00 |
Top |
java-programmer >> unsigned shift confusion
Mike wrote:
> Hi, I'm testing the unsigned shift operator in Java. Unfortunately, the
> value I predicted for the output is 2^17 (131072), not 2^17 - 1
> (131071). See below:
...
> Where is the difference of one coming from?
Maybe you were assuming sign-and-magnitude representation of -10,
0x1000000a, not 2's complement, 0xfffffff6?
Patricia
|
| |
|
| |
 |
Mike

|
Posted: 2007-3-29 22:11:00 |
Top |
java-programmer >> unsigned shift confusion
Patricia Shanahan wrote:
> Mike wrote:
>> Hi, I'm testing the unsigned shift operator in Java. Unfortunately,
>> the value I predicted for the output is 2^17 (131072), not 2^17 - 1
>> (131071). See below:
> ...
>> Where is the difference of one coming from?
>
> Maybe you were assuming sign-and-magnitude representation of -10,
> 0x1000000a, not 2's complement, 0xfffffff6?
>
> Patricia
Hi Patricia. Maybe. But I figured Java (my version is 1.5.0_09) uses
twos complement to store negative numbers? Here's a different set of
code with different output:
Code:
"""
class unsignedshift {
public static void main(String args[])
{
String bs1, bs2;
int a = -10;
bs1 = Integer.toBinaryString(a);
a = a >>> 15;
bs2 = Integer.toBinaryString(a);
System.out.println("The original -10 in binary is: " + bs1);
System.out.println("a (in binary) = " + bs2);
System.out.println("a = " + a);
}
}
"""
Output:
"""
The original -10 in binary is: 11111111111111111111111111110110
a (in binary) = 11111111111111111
a = 131071
"""
The original -10 in binary is right if you consider twos complement. And
I even get the right set of bits (17) when shifting 15 places to the
right. But 2^17 = 131072, which doesn't coincide with the output "a =
131071"
--
Mike
|
| |
|
| |
 |
Patricia Shanahan

|
Posted: 2007-3-29 22:26:00 |
Top |
java-programmer >> unsigned shift confusion
Mike wrote:
...
> Output:
> """
> The original -10 in binary is: 11111111111111111111111111110110
> a (in binary) = 11111111111111111
> a = 131071
> """
>
> The original -10 in binary is right if you consider twos complement. And
> I even get the right set of bits (17) when shifting 15 places to the
> right. But 2^17 = 131072, which doesn't coincide with the output "a =
> 131071"
Do you think 11111111111111111 represents 2^17? If so, why?
Patricia
|
| |
|
| |
 |
Jacques-Olivier Haenni

|
Posted: 2007-3-29 22:30:00 |
Top |
java-programmer >> unsigned shift confusion
Hi,
Is it due to the way you are converting the binary value into a decimal
one ?
For example, 0...000111 is not 2^3.
0...000111 = 2^0 + 2^1 + 2^2 = 7 = 2^3 - 1
In the same way, 17 bits set to 1 means 2^17-1.
I hope I've not missed something in your question...
Jacques-Olivier
Mike wrote:
> Patricia Shanahan wrote:
>> Mike wrote:
>>> Hi, I'm testing the unsigned shift operator in Java. Unfortunately,
>>> the value I predicted for the output is 2^17 (131072), not 2^17 - 1
>>> (131071). See below:
>> ...
>>> Where is the difference of one coming from?
>>
>> Maybe you were assuming sign-and-magnitude representation of -10,
>> 0x1000000a, not 2's complement, 0xfffffff6?
>>
>> Patricia
>
> Hi Patricia. Maybe. But I figured Java (my version is 1.5.0_09) uses
> twos complement to store negative numbers? Here's a different set of
> code with different output:
>
> Code:
> """
> class unsignedshift {
> public static void main(String args[])
> {
> String bs1, bs2;
> int a = -10;
>
> bs1 = Integer.toBinaryString(a);
> a = a >>> 15;
> bs2 = Integer.toBinaryString(a);
>
> System.out.println("The original -10 in binary is: " + bs1);
> System.out.println("a (in binary) = " + bs2);
> System.out.println("a = " + a);
> }
> }
> """
>
> Output:
> """
> The original -10 in binary is: 11111111111111111111111111110110
> a (in binary) = 11111111111111111
> a = 131071
> """
>
> The original -10 in binary is right if you consider twos complement.
> And I even get the right set of bits (17) when shifting 15 places to
> the right. But 2^17 = 131072, which doesn't coincide with the output
> "a = 131071"
>
|
| |
|
| |
 |
Mike

|
Posted: 2007-3-29 22:45:00 |
Top |
java-programmer >> unsigned shift confusion
Patricia Shanahan wrote:
> Mike wrote:
> ...
>> Output:
>> """
>> The original -10 in binary is: 11111111111111111111111111110110
>> a (in binary) = 11111111111111111
>> a = 131071
>> """
>>
>> The original -10 in binary is right if you consider twos complement.
>> And I even get the right set of bits (17) when shifting 15 places to
>> the right. But 2^17 = 131072, which doesn't coincide with the output
>> "a = 131071"
>
> Do you think 11111111111111111 represents 2^17? If so, why?
>
> Patricia
>
The first power is 2^0, so it's not 2^17 -- my fault. Jacques put it
into perspective. Thanks for your help.
--
Mike
|
| |
|
| |
 |
Mike

|
Posted: 2007-3-29 22:47:00 |
Top |
java-programmer >> unsigned shift confusion
Jacques-Olivier Haenni wrote:
> Hi,
>
> Is it due to the way you are converting the binary value into a decimal
> one ?
>
> For example, 0...000111 is not 2^3.
> 0...000111 = 2^0 + 2^1 + 2^2 = 7 = 2^3 - 1
>
> In the same way, 17 bits set to 1 means 2^17-1.
>
> I hope I've not missed something in your question...
>
> Jacques-Olivier
This clarifies my confusion. I always knew the max. decimal number that
can be represented in 32 bits is 2^31 -1 (assuming signed number). So,
since there's still 17 bits it's really 2^17 - 1 which is what you
described. Thanks!
--
Mike
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- where should i store my data: text file or a database?i'm a jackaroo, sorry 4 my stupid question.
my assignment required to detect data transfer error, as part of it, i need
to store some info, which one is easier to be achieved: a text file or a
database.
i code it with JDK1.3.1+ Win2000, but i have to test it on Linux, if i use
database, how can i configure the environment.
- 2
- if and else statementsDavid Postill wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> In article <email***@***.com>, on Wed, 10 Dec 2003 15:09:18 -0500, "Dale King"
> <email***@***.com> wrote:
>
> | "Devin Panchal" <email***@***.com> wrote in message
> | news:2uHBb.2124$email***@***.com...
> | > calm down man. i'm not angry.
> | > i reckon u guys r the soundest people ever. if i came across as angry,
> | then
> |
> | Go back and read your posts. You basically cussed out Thomas for simply
> | pointing out very politely that you should cross-post not multi-post.
> |
> | > i'm sorry. i just dont see y evry1 gotta start this big chain of emails,
> | > just cos i did a multi-post. i mean come on man. does it really matter? is
> | > it really worth losing sleep over?
> | > y dont ya'll chill out? yor like a bunch of whining babies. someone else
> | > will do it tomorow. i made a mistake, i'll try not to do it again. ;)
> |
> | Once again everyone is not upset that you multi-posted instead of
> | cross-posted. That is a common occurrence and when it happens someone will
> | very kindly tell the newbie that they should cross-post instead and that it
> | is better for all involved.
> |
> | What everyone is upset about is YOUR reaction to being told that you should
> | cross post and your attitude that basically says have a right to demand
> | help. You receive help as a favor from other people. No one here is getting
> | paid to answer your questions. Therefore you should be respectful of others.
> | You can show that respect by being considerate of their time by not
> | multi-posting. And you also show respect by listening to what they tell you.
> | If someone tells you that it is a bad idea to multi-post you don't cuss them
> | out. As others have said, if you don't respect others in the group, then you
> | are less likely to receive assistance in the future.
>
> Hmm. Well he is only 17 so what do you expect? The youth of today just don't
> have any manners <grin>.
>
> And he can't even get his own name right. It is "Sunit" not "Devin".
>
> He wants to be an airline pilot...
>
> And he lives in Coventry.
Airline pilot?
<shudder>
<images scenario:>
SUNIT: Air traffic control, this iz Sunit 571 coming in 4 landing.
ATC: Sunit 571, you haven't received clearance to land.
SUNIT: I need 2 land!!!!!!!!! I don't give a sh1t about th0se other planes.
ATC: Denied. Go into circling pattern west of approach.
SUNIT: u bunch of whining babies. all i want 2 do is land. I am coming
in2 land now.
[CRUNCH! 700 people die]
SUNIT is led from the smoking wreckage, having a tantrum.
SUNIT: waaaaaaaaaah!
POLICE: I am arresting you for willful negligence and violation of the
aviation act 1937.
SUNIT: whas u'r problem u big baby? i got 2 land! i got 2 laaaaand!!!
thx for u'r help anyway.
SUNIT is led to a police cell and taught the manners his mother forgot.
- 3
- InvokeLater does not update in timeHi everybody,
I'm working on a small application that scans a lot of files for
information.
To let the user know what is going on, I update the following components:
- a JList containing log messages
- a JProgressBar indicating the progress in the current file
- a JProgressBar indicating global progress
The scan progress is a separate thread. I noticed that the JList was not
getting updated correctly, and after some Googling I found out that this
was because I was not updating it in the Event Dispatching Thread. So I
added the following piece of code:
--- code ---
if (SwingUtilities.isEventDispatchThread())
{
sv.showMessage(message);
}
else
{
Runnable run = new Runnable()
{
public void run()
{
sv.showMessage(message);
}
};
SwingUtilities.invokeLater(run);
}
--- /code ---
"sv" is the JFrame containing the JList. This would ensure that a) the
JList would get updated, and b) that the results would be displayed in
the EDT.
So far so good - but as a result of the amount of files, there will be
thousands and thousands of Runnables, each waiting their turn to get
executed.
The end result is a display in which both JProgressBars are both at 100%,
and the JList still is updating a list of what's going on.
How can I let the update process for the JList keep pace with the
JProgressBars?
Thanks in advance,
Ikke
- 4
- Sun JVM and memory requirementsHi everybody,
For maximum separation of environment we want to run multiple java
instances (each running a webserver). now at peak moments I want these
to use the maximum heap, however, if the peak moments are passed, it
should free up the heap it doesn't use. Is this possible? Is it even
nessesary? What are the alternatives. I must be able to shut one JVM
down without it affecting the others.
Thanks in advance,
Vincent
- 5
- Your Guru Paul Graham is getting trashed on Slashdot.In message <email***@***.com>, Christopher C. Stacy
<email***@***.com> writes
> Stephen> an 80286 game in my lunch breaks at work at the time, 1988).
>
>I assume you're joking about the lack of an editor in 1988.
No. I had an editor, Brief. I didn't have lisp-syntax supporting editor
in 1988. The first syntax supporting editor I saw was Emacs in '91, I
guess.
Stephen
--
Stephen Kellett
Object Media Limited http://www.objmedia.demon.co.uk
RSI Information: http://www.objmedia.demon.co.uk/rsi.html
- 6
- 7
- Classpath problems for JDBC for Microsoft SQL 2000 ServerHello everyone,
Im trying to run a simple program that connects to a local Microsoft
SQL 2000 server which is on my laptop.
I have stored the needed Jar files on my computers enviormental
variables but im still having connectivity issues.
i added this in my catch statements:
System.out.println("My classpath is " +
System.getProperty("java.class.path") );
to show if it is picking up my classpath and it is not.
The actual error i get is:
Driver not found: com.microsoft.jdbc.sqlserver.SQLServerDriver
ill post all the code below. If anyone has any suggestions they would
be greatly appreciated
Thanks for the help everyone.
package thomas;
import java.awt.*;
import java.sql.*;
import java.util.*;
import javax.swing.*;
public class displayAuthors extends JFrame {
public displayAuthors()
{
super( "Authors Table of Books Database" );
try {
Class.forName( "com.microsoft.jdbc.sqlserver.SQLServerDriver"
);
Properties p = new Properties();
p.put("selectMethod","cursor");
p.put("user","tom");
p.put("password","todd");
Connection connection = DriverManager.getConnection(
"jdbc:microsoft:sqlserver://TOMLAP2:1433",p );
Statement statement = connection.createStatement();
ResultSet resultSet =
statement.executeQuery( "SELECT * FROM authors" );
StringBuffer results = new StringBuffer();
ResultSetMetaData metaData = resultSet.getMetaData();
int numberOfColumns = metaData.getColumnCount();
for ( int i = 1; i <= numberOfColumns; i++ ) {
results.append( metaData.getColumnName( i )
+ "\t" );
}
results.append( "\n" );
while ( resultSet.next() ) {
for ( int i = 1; i <= numberOfColumns; i++ ) {
results.append( resultSet.getObject( i )
+ "\t" );
}
results.append( "\n" );
}
statement.close();
connection.close();
JTextArea textArea = new JTextArea(
results.toString() );
Container container = getContentPane();
container.add( new JScrollPane( textArea ) );
setSize( 300, 100 );
setVisible( true );
}
catch ( SQLException sqlException ) {
System.out.println("My classpath is " +
System.getProperty("java.class.path") );
JOptionPane.showMessageDialog( null,
sqlException.getMessage(), "Database Error",
JOptionPane.ERROR_MESSAGE );
System.exit( 1 );
}
catch ( ClassNotFoundException classNotFound ) {
System.out.println("My classpath is " +
System.getProperty("java.class.path") );
JOptionPane.showMessageDialog( null,
classNotFound.getMessage(), "Driver Not Found",
JOptionPane.ERROR_MESSAGE );
System.exit( 1 );
}
}
public static void main( String args[] )
{
displayAuthors window = new displayAuthors();
window.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
}
}
- 8
- 9
- Java Bytecode to Native executable to Protect IPHi
Looking for a java bytecode compiler that will compile java byte code to a
windows self executable file. Reason is to protect intellectual property. I
realise that JET may be able to do that, but the full version is not free
and seems too taxing on the hard drive space. So anyone know of a free
bytecode compile that is simple to use.
Thanks in advance
Regards
AaA
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.716 / Virus Database: 472 - Release Date: 5/07/2004
- 10
- Opera 8.5 just outOn 23 Sep 2005 10:51:22 GMT, email***@***.com (Stefan Ram) wrote
or quoted :
> I am not aware of the keys that I would press to place the
> cursor in the address bar (using a pointing device would slow
> me down).
If you don't want to use mouse functions, the way you discover
keyboard shortcuts is to click Help | Keyboard and they are all there
for you, including F2.
If you wanted to put F2 on a menu, you can reconfigure the menus.
There is not much point. You can click the address bar with the mouse
faster than you could a menu item.
If you don't like clicking new page to get started, you can configure
some dummy home page.
There are two sorts of problem with a browser -- initial getting
acquainted where every difference from your old browser feels like a
bug, and things that annoy you even after you have used it for month
or two.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
- 11
- Tomcat on Windows XP : Number of Simultaneous ConnectionsHi
I am currently using IIS on Windows XP but I think it allows only 10
simultaneous connection. Does anyone knows whether there is such a
limitation with Tomcat on Windows XP? Unfortunately, the user does not
want Linux. Neither do they want to purchase Windows Server. Any other
limitations?
Thanks in advanced.
ronnie.
- 12
- 13
- Using iframes in java.Hi Everyone
Can anyone tell me why loaded.htm doesn't load in iframe lmenu
<html>
<head>
<title>Gareth Homemade pulse site</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<script language="JavaScript">
<!--
function login(password) {
if (password == "1") {
alert("You have entered the correct password! Click ok to access the
secure section");
document.frames('parent.frames[\'lmenu\']','\loaded.htm');
}
else {
alert("You have entered an invalid password!");
}
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" rightmargin="0"
topmargin="0"scroll="no">
<table width="785" border="0" cellpadding="0" height="320"
cellspacing="0" bgcolor="#003399" align="center"
bordercolor="#FFFFFF">
<tr>
<td bgcolor="#FFFFFF" >
<table width="100%" border="5" cellspacing="0" cellpadding="0"
bgcolor="" bordercolor="#333333" align="center">
<tr >
<td bordercolor="#333333" height="42" bgcolor="#FFFFFF">
<div align="center"><font size="+3">You have entered IT
Secure Site.<br>This Site is for IT Personnel Only </font></div>
<form name="form1" method="post" action="">
<div align="center">Please enter your password:
<input type="text" name="textfield">
<input type="submit" name="Submit" value="Submit"
onClick="login(textfield.value)"></div></form>
</td>
</tr>
<tr >
<td bordercolor="#333333">
<table width="1000" border="0" cellspacing="0"
cellpadding="0" bgcolor="#FFFFFF" align="center"
bordercolor="#FFFFFF">
<tr bordercolor="#000000" bgcolor="#000000">
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<div align="center"></div>
</td>
</tr>
</table>
<iframe name="lmenu" width="30%" height="540"
frameborder="0" src="Blank.htm"><iframe name="main"
width="70%"height="540" frameborder="0" src="blank.htm"></td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
</body>
</html>
- 14
- JTable Display doesn't match TableModel ??Hi All,
I have a Jtable & Tablemodel.
When I clear the tablemodel, rows in the JTable are still visible, what
am I missing ?
TIA
Bill
// clear the data
datalist.clear();
fireTableDataChanged();
// rows are still visible in theJTable !!!
.....do lots of processing to get more data....
// at the end of all the processing - change the data in the model
datalist.clear(); // initialize the list
datalist.addAll(list); // add the data
fireTableDataChanged(); // fire the data changed event
// now the JTable matches what is in the Tablemodel..
- 15
- Java JDE and Mac?Hello!
I have no experience of macintoch but is just a bit curious weather there is
a JDE for mac? If there is, where do you get it, cos I haven't found it on
sun's homepage?
...and second of all is there JRE for mac?
Thanks in advance!
Marcus
|
|
|