| Struts and mapped property |
|
 |
Index ‹ java-programmer
|
- Previous
- 2
- McNealy gives it away``McNealy gives it away
``[...] McNealy?s intimates might provide the real clues as
to what it means. Jon Feiber, a Sun manager from 1983 to
1991, says in High Noon, a book about McNealy, that ?if
Scott blinks at all, Microsoft will eat his lunch.
Anything other than absolute conviction and unbelievable
maniacal desire to compete with Microsoft is going to
lose. You?re not going to beat Bill Gates by being
conciliatory or compromising.?
This deal looks like a loss. [...]''
--
__________
|im |yler http://timtyler.org/ email***@***.com Remove lock to reply.
- 2
- JDBC to MS AccessHello,
I have just wanted to use such line to add one field into ms access
database:
st.executeUpdate("INSERT INTO DateTable (Date) VALUES (#2006-09-06#)");
Table DateTable has two fields: DateID (autoincrement) & Date
(date/time type). Compiling it I got an error:
"[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO
statement."
So it seems that my insert is not well formulated. Ok, but when I copy
it to MS Access I have no problems with running it (i.e. I get no
errors and a new row is added). Could you tell me what is going on?!?
Regards, mark
- 2
- Dynamic Network Printer Discovery and Administration via jcifs.samba.org.I am working on a large-scale reporting solution. One component is to
be able to scan the network for all printers and maintain a record of
these printers. I have read many, many posts on these forums with
similar questions, most of which do not have any answers. Below is the
progress I have made so far, hopefully someone can offer some
input/insight.
1. Finding Network Printers - I used jcifs to browse the network and
find all shared devices that were printers.
Code:
private static void findAllPrinters() throws Exception {
SmbFile root = new SmbFile("smb://domain;USR:PASS@domain");
Hashtable printerHash = new Hashtable();
searchForPrinters(root, printerHash);
Enumeration keys = printerHash.keys();
System.out.println("Number of Printers Found: " +
printerHash.size());
SmbFile file = null;
while (keys.hasMoreElements()) {
file = ((SmbFile)keys.nextElement());
System.out.println("UNC: " + file.getUncPath());
}
}
private static void searchForPrinters(SmbFile root, Hashtable
printers) throws Exception {
SmbFile[] kids= null;
try {
kids = root.listFiles();
} catch (Exception e) {
}
if (kids == null)
return;
for (int i = 0; i < kids.length; i++) {
if (kids[i].getType() == SmbFile.TYPE_WORKGROUP ||
kids[i].getType() == SmbFile.TYPE_SERVER)
searchForPrinters(kids[i], printers);
else if (kids[i].getType() == SmbFile.TYPE_PRINTER) {
printers.put(kids[i], Boolean.TRUE);
}
}
}
By doing this I can find each printer on my network that I can find
when I use windows control panel and search for network printers.
2. I can print a test to any printer successfully.
Code:
FileOutputStream fos = new
FileOutputStream("\\\\PrintShare\\MyPrinter"); //hardcoded for test,
but taken from output of part #1 above.
PrintStream ps = new PrintStream(fos);
ps.print("\r");
ps.print("This page will be printed directly to the printer.");
ps.print("\f");
ps.close();
3. This is where i need help. Continuing on what I have already
accomplished...
A. How can I create a more complex printer reference to allow me to
control number of copies, color vs. bw, page layout, page size, obtain
details from printer such as acceptable page sizes, data types
printable, etc.
B Be able to detect printer errors and if the page has completed.
And and all input and/or collaboration is apprecaited! I feel I am
close to finding the link, but not sure where to find the missing
puzzle piece.
Thx,
Rob
- 4
- RMI and ThreadsI have a server applications, running on Win2003 and J2SDK 1.4.2_03 that
performs operations on a IBM mainframe. The flow of operations is like this:
- a client application (.NET) invokes a Web Service method (Tomcat and
Axis);
- the Web Service method invokes a method of a RMI Server, that then invokes
a method on a TServer object it references;
- this TServer object then uses a pool of mainframe session objects (Jakarta
Pool and IBM Host-On Demand) to fulfill the request;
- the result is moved again to the .NET client by way of return of the
methods invoked.
Everything worked fine until I begun test loading it, when I realized that
there was a bottleneck somewhere as no matter how I increased the number of
requests, the number of operations satisfied did not increase. With the help
of System.out I realized that only "RMI TCP Connection(2)" and "RMI TCP
Connection(3)" threads were at work for all the requests, which is naturally
a bottleneck.
Isn't it supposed that each RMI request generates a new thread (if existing
threads are servicing previous demands)? Why only 2 RMI threads? Is this
configurable?
Any simple way to change this (the application is already quite complex and
do not want to add a new Framework)?
I'm really in deep waters if I can't solve this, because I have something
like 450,000 operations to do (as a migration operation) which at the rhythm
of 25 a minute....
Thank you very much,
Araxes Tharsis
(email***@***.com)
- 4
- ParseException Error. Please Help!!Hello all!
Very new to Java need to complete this assignment for a school
project. The code below creates a few books (Title, Author or Authors,
Publisher, Number of pages, Publication Date etc.)
Methods have been developed to display a book's information and to
compare two books by title, number of pages and, HERE IS THE PROBLEM,
publication date.
Date has to be in the "dd-MM-yyyy" format.
The code works alright if we leave out the compPubDate method (line
55) and the calling of that method at line 95.
The message I get from the compiler is this:
Library.java:95: unreported exception java.text.ParseException; must
be caught or declared to be thrown
book2.compPubDate(book4);
There must be something wrong with my method that I don't understand.
Could anyone please help me fix this for me? Any help would be greatly
appreciated!
import java.util.*;
import java.text.*;
class Book {
String title;
String author1;
String author2;
String author3;
String pubdate;
String isbn;
int numpages;
String publisher;
Book(String title, String author1, String author2, String author3,
String pubdate, String isbn, int numpages, String publisher) {
this.title = title;
this.author1 = author1;
this.author2 = author2;
this.author3 = author3;
this.pubdate = pubdate;
this.isbn = isbn;
this.numpages = numpages;
this.publisher = publisher;
}
void bookData (Book book1) {
System.out.println("Title: " + book1.title + '\n' + "Author1: " +
book1.author1 + '\n' + "Author2: " + book1.author2 + '\n' + "Author3:
" + book1.author3);
System.out.println("Publication Date: " + book1.pubdate + '\n' +
"ISBN: " + book1.isbn + '\n' + "Number of Pages: " + book1.numpages);
System.out.println("Publisher: " + book1.publisher + '\n');
}
void compPages(Book otherBook) {
if (this.numpages > otherBook.numpages)
System.out.println("\nThe book " + this.title + ", has more pages
than book " + otherBook.title + " has\n");
else if (this.numpages < otherBook.numpages)
System.out.println("\nThe book " + otherBook.title + ", has more
pages than book " + this.title + " has\n");
else if (this.numpages == otherBook.numpages)
System.out.println("\nThe book " + this.title + ", has the same
pages as book " + otherBook.title + " has\n");
}
void compPublisher(Book otherBook) {
if (this.publisher.equals(otherBook.publisher))
System.out.println("The two books have the same Publisher: " +
this.publisher + '\n');
else
System.out.println("The two books DO NOT have the same Publisher" +
'\n');
}
void compPubDate(Book otherBook) throws ParseException {
DateFormat df = new SimpleDateFormat("dd-MM-yyyy");
Date d1 = df.parse(this.pubdate);
Date d2 = df.parse(otherBook.pubdate);
String relation;
if (d1.equals(d2)) {
relation = " have the same publication date";
System.out.println("Book: " + this.title + " and " +
otherBook.title + "," + relation);
}
else if (d1.before(d2)) {
relation = " was published before Book: ";
System.out.println("Book: " + this.title + relation +
otherBook.title);
}
else {
relation = " was published after Book: ";
System.out.println("Book: " + this.title + relation +
otherBook.title);
}
}
}
public class Library {
public static void main(String[] arguments) {
Book book1 = new Book("Before The Dawn", "Tim Birtas", "MFA",
"GSGA", "23-3-2004", "030-536-278-9", 105, "Epic ltd");
Book book2 = new Book("A Brief History of Time", "Stephen W.
Hawking", "", "", "01-3-1988", "055-305-243-8", 198, "Bantam Books");
Book book3 = new Book("Teach Yourself C", "Herbert Schildt", "", "",
"01-4-2000", "960-512-228-6", 635, "McGraw-Hill");
Book book4 = new Book("Computer Networks", "Andrew S. Tanenbaum",
"", "GSGA", "23-3-2004", "0-13-394248-1", 813, "Prentice Hall");
Book book5 = new Book("Programming Languages II", "Cleanthis
Trabulides", "", "", "01-01-2001", "960-538-174-5", 252, "EAP");
book4.bookData(book4);
book2.compPages(book4);
book2.compPublisher(book4);
book2.compPubDate(book4);
}
}
- 4
- newInstance() with generics howto?How could we 'clean up'(no ct error, no ct warning, no rt error nor
exception)
the following code? I tried everything conceivable and failed in all of
them.
------------------
import java.util.*;
import java.lang.reflect.*;
public class GetMethod{
public static void main(String[] args) {
Object obj = null;
Class<Hashtable> clazz = Hashtable.class;
Class<Class> claxx = Class.class;
try {
Method method = claxx.getMethod("newInstance");
obj = method.invoke(clazz);
}
catch (Exception e) {
e.printStackTrace();
}
Hashtable<String,String> ht = (Hashtable<String,String>)obj;
ht.put("foo", "bar");
System.out.println(ht.get("foo"));
}
}
-----------------------------------------------------------------------
- 4
- in jvm, how do you leap?hi ..
can anyone please help me answer this questions..
i'm totally lost.. i dont know what leap really
means in this context.. and i dont know
how you would do that unknown thing in JVM..
any help is appreciated!!
thanks
- 9
- Swing design, components vs. containersHi,
Can anyone explain me (or guess on) the motivation for why the Swing
developers decided to let JComponent extend the AWT Container class and
not the AWT Component class?
I find it strange that Swing does not seperate containers from
components in the class hierarchy (ie. you can add buttons to buttons etc.).
Any comments on this issue would be appreciated.
--
Martin - http://925.dk
"Shoot for the moon, even if you miss, you'll land among the stars."
- 9
- Well spoken, John.Hi Joe Jitsu ( John ),
You wrote,
" Jeff, I've finally learned that c++ is just plain fun.
The money is now very secondary to me.
I don't know why I ever thought C++ was so difficult.
C++ can create open-source / cross-platform applets
better than any fly-by-night language such as C#.
I must learn, Jeff, Learn C++ ...
and then maybe ... just maybe ...
I won't be so horny anymore. "
Wow, John. I couldn't have said it better myself.
- 9
- experiences running Cold Fusion?Hi!
Anyone has experiences running Cold Fusion @ freebsd. Native or linux
emulation?
/Palle
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 9
- 10
- cheap, jordan, jordans, 1 ,shoes ( paypal accept ) ( www.top-saler.com )cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap,nike,sneakers, ( paypal accept ) ( www.top-saler.com
)
cheap, jordan, jordans, 1 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans,2 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 3 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 4 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 5 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 6 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 7 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 8 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 9 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 10 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 11 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 12 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 13 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 14 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 16 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 17 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 18 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 19 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 20 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 21 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 22 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, jordan, jordans, 23 ,shoes ( paypal accept )
( www.top-saler.com )
Nike cheap,Air Max, ( paypal accept ) ( www.top-saler.com
)
cheap,Air Max, 87 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 90 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 91 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 95 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 97 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 2003 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 360 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 180 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, TN ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, TN2 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, TN3 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, TN6 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, TN8 ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, LTD ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Air Max, 1 id ,shoes ( paypal accept )
( www.top-saler.com )
Nike cheap,Shox, ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, NZ ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, R4 ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, TL3 ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, TL4 ,shoes ( paypal accept ) (
www.top-saler.com )
cheap,Shox, TL ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, OZ ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Shox, Rival ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Shox, Classic ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Shox, Energia ,shoes ( paypal accept )
( www.top-saler.com )
Nike Air Force one ( paypal accept ) ( www.top-saler.com
)
cheap, Air Force one , shoes ( paypal accept )
( www.top-saler.com )
cheap, Air Force one , shoes ( paypal accept )
( www.top-saler.com )
cheap, Air Force one , shoes ( paypal accept )
( www.top-saler.com )
cheap, Air Force one , shoes ( paypal accept )
( www.top-saler.com )
Nike Dunk sb ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Dunk, low ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Dunk, high ,shoes ( paypal accept ) (
www.top-saler.com )
cheap,Adidas ,,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Adidas, Running ,shoes ( paypal accept )
( www.top-saler.com )
cheap, Adidas, 35 ,shoes ( paypal accept ) (
www.top-saler.com )
cheap, Adidas ,City ,shoes ( paypal accept )
( www.top-saler.com )
cheap, Adidas, Goodyear ,shoes ( paypal accept )
( www.top-saler.com )
cheap, Adidas, NBA, ,shoes ( paypal accept )
( www.top-saler.com )
cheap, Adidas, Y-3 ,shoes ( paypal accept )
( www.top-saler.com )
cheap, T-MAC, ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Rift ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Bape Star ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Football ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Timberland boots ,shoes ( paypal accept )
( www.top-saler.com )
cheap,Hardaway ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,James ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Puma ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Prada ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Prada low ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Prada high ,shoes ( paypal accept ) (
www.top-saler.com )
cheap,Dsquared ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Gucci ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Gucci low ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap, Gucci high ,shoes ( paypal accept ) (
www.top-saler.com )
cheap,LV ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Kappa ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Converse ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Dsquared ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,D&G ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Lacoste ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Umbro ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Versace ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Woman ,boots ( paypal accept ) ( www.top-saler.com
)
cheap,ugg, boots ( paypal accept ) ( www.top-saler.com
)
cheap,Burberry ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,EVISU ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Hogan ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,Hurricane ,shoes ( paypal accept ) ( www.top-saler.com
)
cheap,handbag Bags ( paypal accept ) ( www.top-saler.com
)
cheap, LV, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Gucci, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Prada, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, D&G, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Leather, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, A&F, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Juicy ,Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Guess, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Feidi, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Coach, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Chloe, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, Chanel, Bag ( paypal accept ) ( www.top-saler.com
)
cheap, ugg, bag ( paypal accept ) ( www.top-saler.com
)
cheap, Burberry, bag ( paypal accept ) ( www.top-saler.com
)
cheap, Dooney&Bourke, bag ( paypal accept )
( www.top-saler.com )
cheap, Jimmy Choo, bag ( paypal accept ) ( www.top-saler.com
)
cheap, Dior, bag ( paypal accept ) ( www.top-saler.com
)
Purse
cheap, CHANEL ,Purse ( paypal accept ) ( www.top-saler.com
)
cheap, COACH, Purse ( paypal accept ) ( www.top-saler.com
)
cheap, Else ,Purse ( paypal accept ) ( www.top-saler.com
)
cheap, GUCCI, Purse ( paypal accept ) ( www.top-saler.com
)
cheap, LV ,Purse ( paypal accept ) ( www.top-saler.com
)
cheap, man ,purse ( paypal accept ) ( www.top-saler.com
)
Strap
cheap, BAPE, Strap ( paypal accept ) ( www.top-saler.com
)
cheap, BOSS, Strap ( paypal accept ) ( www.top-saler.com
)
cheap, CHANEL ,Strap ( paypal accept ) ( www.top-saler.com
)
cheap, D&G ,Strap ( paypal accept ) ( www.top-saler.com
)
cheap, GIORGIO ARMANI ,Strap ( paypal accept )
( www.top-saler.com )
cheap,GUCCI, Strap ( paypal accept ) ( www.top-saler.com
)
cheap, LV ,Strap ( paypal accept ) ( www.top-saler.com
)
,Glasses
cheap, ARMANI ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, BURBERRY ,Glasses ( paypal accept ) (
www.top-saler.com )
cheap, BVLGARI ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, Ray.Ban ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, VERSACE ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, Prada ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, OKEY ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, LV ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, HERMES ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, EL.FERROL ,Glasses ( paypal accept )
( www.top-saler.com )
cheap, DIOR ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, D&G ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, GUCCI ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap,CHANEL ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, CS ,Glasses ( paypal accept ) ( www.top-saler.com
)
cheap, CARTIER ,Glasses ( paypal accept ) ( www.top-saler.com
)
Watch ( paypal accept ) ( www.top-saler.com )
cheap, Rolex Watch ( paypal accept ) ( www.top-saler.com
)
,clothing ( paypal accept ) ( www.top-saler.com )
cheap, 10 DEEP ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, A&F ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, Abercrombie&Fitch ,clothing ( paypal accept )
( www.top-saler.com )
cheap, Abercrombie & Fitch ,clothing ( paypal accept )
( www.top-saler.com )
cheap, ADICOLOR ,clothing ( paypal accept )
( www.top-saler.com )
cheap, ADIDAS ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, AK ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, ARMANI T-shirt ( paypal accept ) ( www.top-saler.com
)
cheap, ARMANI Sweater ( paypal accept ) ( www.top-saler.com
)
cheap, polo Sweater ( paypal accept ) ( www.top-saler.com
)
cheap, Artful dodger ,clothing ( paypal accept )
( www.top-saler.com )
cheap, BAPE ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, BBC ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, CLH ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, COOGI ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, D&G ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, DSQUARED ,clothing ( paypal accept )
( www.top-saler.com )
cheap, ED ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, HARDY ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, EVISU ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, EVS ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, GGG ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, G-STAR ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, LACOSTE T-shirt ,clothing ( paypal accept )
( www.top-saler.com )
cheap, Lacoste Sweater ( paypal accept ) ( www.top-saler.com
)
cheap, LRG ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, NY ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, O&L ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, POLO T-shirt 3 4 5 ( paypal accept )
( www.top-saler.com )
cheap, POLO T-shirt ,clothing ( paypal accept )
( www.top-saler.com )
cheap, Byrberry T-shirt ( paypal accept ) ( www.top-saler.com
)
cheap, UGG ,clothing ( paypal accept ) ( www.top-saler.com
)
cheap, Byrberry ,clothing ( paypal accept )
( www.top-saler.com )
cheap, NFL Jersey ( paypal accept ) ( www.top-saler.com
)
cheap, scarf scarves ( paypal accept ) ( www.top-saler.com
)
,jeans ( paypal accept ) ( www.top-saler.com )
cheap, AFTFUL DODGER ,jeans ( paypal accept )
( www.top-saler.com )
cheap, AKA STASH HOUSE ,jeans ( paypal accept )
( www.top-saler.com )
cheap, APE ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, BBC ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, COOGI ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, D&G ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, DIESEL ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, ED ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, EVISU ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, Gino ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, G-Star ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, LRG ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, RMC ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, ROCK ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, SHMACK ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, TR ,jeans ( paypal accept ) ( www.top-saler.com
)
cheap, ugg ,jeans ( paypal accept ) ( www.top-saler.com
)
hat cap ( paypal accept ) ( www.top-saler.com )
cheap, Chanel ,hat ,Cap ( paypal accept ) ( www.top-saler.com
)
cheap, D&G, hat, cap ( paypal accept ) ( www.top-saler.com
)
cheap, G-Star, hat, Cap ( paypal accept ) ( www.top-saler.com
)
cheap, Gucci ,hat, Cap ( paypal accept ) ( www.top-saler.com
)
cheap, lv, hat ,Cap ( paypal accept ) ( www.top-saler.com
)
cheap, POLO ,hat, Cap ( paypal accept ) ( www.top-saler.com
)
cheap, Prada ,hat, Cap ( paypal accept ) ( www.top-saler.com
)
- 10
- Sockets with unsigned appletsHi,
I'm working on a small java game applet that will need to connect to a
gameserver. The game server is different from the web server hosting
the applet.
From what I've read then the only way of doing this is by getting a
certificate and signing the applet - is this correct?
Or is there anyway to do this without a certificate?
Thanks,
--
Lasse Hassing, www.sinf.org
- 11
- Please, I am going insane: First element access causing ArrayIndexOutOfBoundsException:0Hello there,
Please God can someone help me before I break my PC.
I have a class that runs a query against an Oracle 10g database. The
query is returning the results I want.
I get two users which is what I want. I have an array created that has
a length of two.
I feed the results of the query into the array...
<code>
int[] engineers = new int[2];
String sql = "select USERID from g_user where role='Engineer'";
PreparedStatement pstmt = tempConn.prepareStatement(sql);
ResultSet rs = pstmt.executeQuery();
while (rs.next()) {
engineers[i] = rs.getInt("USERID"); // find result of count
i++;
}
</code>
The very next thing if i try
<code>
System.out.println("engineer array length is " + engineers.length);
System.out.println("engineer array 0 is " + engineers[0]);
System.out.println("engineer array 1 is " + engineers[1]);
</code>
I get....
<code>
engineer array length is 2
java.lang.ArrayIndexOutOfBoundsException: 0
engineer array 0 length is 85
engineer array 1 length is 123
</code>
If i take out the first print message to find the length i get the
same error when i try to access the first element. If i take out the
message to access the length and the first element i get no error
whatsoever! but obviously i cannot do anything useful with my program
because i cannot access the first element.
I thought i was losing my mind, so i created a tiny program with just
this code on its own and it runs perfectly which is making me even
crazier!
What in the name of all that is good could be causing this?! I mean it
is printing out the correct contents and length of the array even
after it shows an error to say outofbounds!
Any help at all is very much appreciated...
Thank you,
J.
- 12
- JAXB 2.0 Question?Hi,
I have created Java classes from an XSD using IntelliJ 6 and JAXB 2.0
plugin. I have populated the object and when I try to marshal the
object, I am getting ns2 appended to my root (default) element. I have
added a XmlRootElement tag to my root element. For the sake of
simplicity, I tried to unmarshal an XML file and then marshal it again
(without doing anything in between) as seen next:
My original XML file looks like the following:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><MSG
xmlns="http://xxx.yyy.com/"><ACKNOWLEDGEMENT>Success</
ACKNOWLEDGEMENT></MSG>
When I unmarshal it and marshal it again (doing nothing in between), I
get:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><MSG
xmlns:ns2="http://xxx.yyy.com/"><ns2:ACKNOWLEDGEMENT>Success</
ns2:ACKNOWLEDGEMENT></MSG>
I have used the same techniques before and they worked successfully. I
do not think the problem is with the XSD. Could you please tell me why
am I getting ns2 appended to my root element? and how can I get rid of
it?
Thanks in advance
|
| Author |
Message |
ShadowMan

|
Posted: 2004-12-4 19:16:00 |
Top |
java-programmer, Struts and mapped property
Hi
I'm using Struts with DynaActionForm wich as 3 to 8 Map as property, so I'm
using mapped property.
When I put them into HTML form it result in INPUT fields having names like
'map1(property1)' this leads to problems in writing Javascript.
Can I use another format in mapped property names?!
thanx
--
ShadowMan
|
| |
|
| |
 |
Oscar kind

|
Posted: 2004-12-5 1:43:00 |
Top |
java-programmer >> Struts and mapped property
ShadowMan <email***@***.com> wrote:
> using mapped property.
> When I put them into HTML form it result in INPUT fields having names like
> 'map1(property1)' this leads to problems in writing Javascript.
> Can I use another format in mapped property names?!
No. At least not without rewriting that part of Struts.
You can however, use javascript constructs like this in a form input
element:
this.form.elements['map1(text1)'].value = 'foo'
--
Oscar Kind http://home.hccnet.nl/okind/
Software Developer for contact information, see website
PGP Key fingerprint: 91F3 6C72 F465 5E98 C246 61D9 2C32 8E24 097B B4E2
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- Finding BCC receipientsIs there a way to see if a user (having sent you an email) has bcc'd
that email to anyone else? Sun Java WebMail is being used.
Mark
******
- 2
- Terminate a process treeHi group,
I'm new here, so apologies if I ask this in the wrong way.
I have been programming in java for about 2 months, and am currently trying
to control an external application that I start using:
Process proc;
Runtime rt;
proc = rt.exec("java.exe -cp ... etc.. something");
Then I capture the input/output & error streams and thread them off.
The problem I have, is that I need to architect for the eventuality of the
external process locking up and not responding to requests. I have the
whole capturing of streams in a timeout, so I can tell when the external
program has not responded within a reasonable time, however when I issue the
proc.destroy() method, the java.exe process takes up almost 100% cpu and
never stops. I have to use operating system tools to perform a manual kill
of the process.
I can only assume that the proc.destroy() doesnt kill the entire process
tree, and because the command line starts off java.exe, which runs the
something.class file, a process is orphaned somewhere.
Any help would be much appreciated.
Thanks
Wayne
- 3
- 4
- Java Gurus Help!Yep, shall do i use limewire but you didn't no I typed that....... ;)
cheers Steve
- 5
- fix horizontal sizeI have a JFrame that I'd like to fix so it is resizable vertically, but not
horizontally. I can't seem to come up with any simple way of doing this, but
it doesn't sound like it should be too difficult.
Can anybody help. If I need to make it a JWindow, or something else, that
shouldn't be a problem.
Cheers
Scott
- 6
- Any available Web-based Calendar module written in JSPHi,
I wonder if there is any available Web-based Calendar module that
allows users to enter/edit event, set repeating frequency and reminder
of the event. I need something written in JSP.
Thanks in advance.
Tung Chau
- 7
- java to java networkingI have not written any socket code before or done any RMI.
I'd like to do the developer certification and also I have my own project
waiting in the wings that would benefit from this. The latter is my primary
concern.
I have a distibuted java application (is this the right term?) that exists
on many users PCs on a network. This is essentially just gui code. I then
have a central java 'server' application that applies the model & all the
business rules.
The view application needs to deal just with the business app, which in turn
deals with the data layer, MySQL, Flatfile or whatever. I think this is
pretty standard practice?
My basic understanding so far is that I should define the interface by which
the protocol operates. I'm not entirely sure how to do this and what else I
need to do, though I imagine proper threading will form a crucial aspect of
this.
Can anyone recommend a good book that assumes half decent OO & java skills,
and that I can apply to the developer certification. I've got the Sybex
book 'complete java2 certification' but it glosses over a great deal of
networking.
Does anyone know of anything online that would help me?
Perhaps people could profer a Joshua Bloch style list of networking does and
don'ts?
TIA
--
Mike W
- 8
- EJB Deploy issues in RAD 6 I get the following exception while trying to deploy a EJB project in
my test environment
com.ibm.etools.rmic.RMICException: RMIC Command returns RC = 1.
at com.ibm.etools.rmic.RMICOperation.invokeCommandLine(Unknown Source)
at com.ibm.etools.rmic.RMICOperation.rmic(Unknown Source)
at com.ibm.etools.rmic.RMICOperation.generateStubs(Unknown Source)
at com.ibm.etools.rmic.UIRMICBeansOperation.generateStubs(Unknown
Source)
at com.ibm.etools.rmic.RMICOperation.run(Unknown Source)
at com.ibm.etools.ejbdeploy.EJBDeployer.visit(Unknown Source)
at com.ibm.etools.ejbdeploy.EJBDeployer.doExecute(Unknown Source)
at com.ibm.etools.ejbdeploy.EJBDeployer.execute(Unknown Source)
at com.ibm.wtp.j2ee.deploy.J2EEDeployOperation.deploy(Unknown Source)
at com.ibm.wtp.j2ee.deploy.J2EEDeployOperation.execute(Unknown Source)
at com.ibm.wtp.common.operation.WTPOperation.doRun(Unknown Source)
at com.ibm.wtp.common.operation.WTPOperation$1.run(Unknown Source)
at org.eclipse.core.internal.resources.Workspace.run(Unknown Source)
at org.eclipse.core.internal.resources.Workspace.run(Unknown Source)
at com.ibm.wtp.common.operation.WTPOperation.run(Unknown Source)
at com.ibm.wtp.common.operation.WTPOperationJobAdapter.run(Unknown
Source)
at org.eclipse.core.internal.jobs.Worker.run(Unknown Source)
Any idea why this happens?
- 9
- Re:Clearlooks is unsupported??Hi,
I am using RePast simulation package with Java 1.5 on Fedora Core 4.
When I run the model (see below), I get the following message. The
program works, but it generates pretty ugly interface.
Could anyone please let me know how to solve this problem??
Thank you.
-----------------------------------------------------------------
[jonghook@localhost GayModel]$ java -cp .:${REPASTJ}/repast.jar
GayModel
/usr/share/themes/Clearlooks/gtk-2.0/gtkrc:49: Engine "clearlooks" is
unsupported, ignoring
-------------------------------------------------------
- 10
- implement writeObject how? serializable singleton how?I have code that I want to execute only once ever, as a side-effect of
constructing an object. I have put this in a static initializer. But,
if I want to allow the object to be serialized I seem to be stuck,
since the initializer is executed during deserialization.
In the java developer's almanac:
http://www.exampledepot.com/egs/java.io/DeserSingle.html
There's an example of a serializable singleton:
public class MySingleton implements Serializable {
static MySingleton singleton = new MySingleton();
private MySingleton() {
}
// This method is called immediately after an object of this
// class is deserialized.
// This method returns the singleton instance.
protected Object readResolve() {
return singleton;
}
}
If I add code to the constructor, it executes during
deserialization, so that doesn't work for me.
Is there someway to determine within a static initializer or
constructor that this object is being constructed and not being
deserialized? If there were I could execute code only during the one
construction of the object, and not again.
I was thinking that I could implement readObject/writeObject. But, how can
I implement writeObject? How do you represent the fields?
In the oreilly RMI book there is an example of a writeObject method,
but it doesn't explain how you are supposed to represent fields of the
object. I've looked around a bit and found nothing.
- 11
- REALLY CHEAP computer programming ebook libraries just follow any of the links below REALLY CHEAP computer programming eBook Libraries just follow any of the links below
Super Visual Basic eBook Library only ?!
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152882&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152862&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3652441341&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578838387&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152820&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3652441295&ssPageName=ADME:B:LC:UK:1
Incredible A+ Certification eBook CD-ROM only ?!
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578838127&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578838127&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152561&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3652441071&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152536&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152520&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578838040&ssPageName=ADME:B:LC:UK:1
Brilliant C/C++ eBook Library only ?!
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152433&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578837936&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3652440934&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=3578837915&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152379&ssPageName=ADME:B:LC:UK:1
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=2779152365&ssPageName=ADME:B:LC:UK:1
- 12
- Need to create custom taglib similar to bean:messageFirst off let me just say that while I know "java" pretty well from
about 3-4 years ago, but I am not really up to speed on all the JSP and
Struts things going on but I'm learning as fast as possible :-)
That being said, I have been thrown feet first into a new project and
have been asked to do this.
So anyway I am using resource.properties files to store all of our
strings and I have been adding them to our JSP's using the bean:message
taglib.
This works great and I have no problem creating different property
files for multiple languages using localization.
My problem is that the app we are writing is for one company that
operates in different states (OH, IN, etc...) The business logic for
each company is very similar but sometimes the language needs to change
between states. Further confusing the issue is that this one company
has sub companies which operate in multiple states and each company is
very similar. So I have come up with the idea that I would like to use
the "key" element of bean:message to try to create a sort of
localization scheme for the companies and states.
Here is is my idea. I would like to create a taglib that works exactly
like the bean:message taglib except that you pass in key names that are
like "promptname.company.state". The taglib will look for a key named
"promptname.company.state" and if it exists it will return it, if not
it looks for generic key for that company "promptname.company" if that
does not exist it looks for "promptname". If that key does not exist
it returns error or ???key?? as normal.
The idea is that we create a generic base for the application and
customize the prompts from the differences. Seems like a good idea to
me, heck, there may even already be a taglib out there that does this?
My problem is that I don't know where to start with extending the
bean:message tag. Theoretically it wouldn't be a problem to just keep
sending requests and stripping off .company and .state until you found
one.
Can someone point me in the right direction for doing this? This would
really save me some time.
Jason Stiles
email***@***.com
- 13
- 14
- Bug#388596: gcj-4.1: CharsetEncoder.canEncode() gives different results than Sun versionPackage: gcj-4.1
Version: 4.1.1-13
Severity: normal
The following test program gives different results with gcj and Sun JDK:
// A.java
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
public class A {
public static void main(String[] args) throws java.io.IOException
{
CharsetEncoder enc = Charset.forName("US-ASCII").newEncoder();
System.out.println(enc.canEncode('\u00e4'));
}
}
// end
$ javac A.java
$ /usr/lib/jvm/java-1.5.0-sun/bin/java A
false
$ /usr/lib/jvm/java-gcj/bin/java A
true
The Sun version seems to return something like (c > 31 && c < 127),
which makes sense, whereas gcj always gives true.
This breaks lots of code, such as Apache JaxMe 2 version 0.51
(specifically the MarshallerTest in the test suite, which generated
invalid XML with gcj).
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-686
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Versions of packages gcj-4.1 depends on:
ii gcc-4.1 4.1.1-13 The GNU C compiler
ii gcj-4.1-base 4.1.1-13 The GNU Compiler Collection (gcj b
ii gij-4.1 4.1.1-13 The GNU Java bytecode interpreter
ii java-common 0.25 Base of all Java packages
ii libc6 2.3.6.ds1-4 GNU C Library: Shared libraries
ii libc6-dev 2.3.6.ds1-4 GNU C Library: Development Librari
ii libgcc1 1:4.1.1-13 GCC support library
ii libgcj7-dev 4.1.1-13 Java development headers and stati
ii libgcj7-jar 4.1.1-13 Java runtime library for use with
ii zlib1g 1:1.2.3-13 compression library - runtime
Versions of packages gcj-4.1 recommends:
ii fastjar 1:4.1.1-13 Jar creation utility
-- no debconf information
--
To UNSUBSCRIBE, email to email***@***.com
with a subject of "unsubscribe". Trouble? Contact email***@***.com
- 15
- UI Painting Problems -Upgrade from JDK1.3-JDK1.4Hi,
I have some UIs in my application. Today I was upgrading the code from
JDK1.3.1 to JDK1.4.2 WindowsXP.
Some How the UI hangs and painting does not happen properly. Does any
body have any solution
Any solutions is helpfull....
All compilation went through fine...
When I generate the JVM dump.. I get the following errpr
Full thread dump Java HotSpot(TM) Client VM (1.4.2_03-b02 mixed mode):
"DestroyJavaVM" prio=5 tid=0x000352b8 nid=0x8ac waiting on condition
[0..7fad8]
"TimerQueue" daemon prio=5 tid=0x03164d28 nid=0xe84 in Object.wait()
[76cf000..7
6cfd8c]
at java.lang.Object.wait(Native Method)
- waiting on <0x10e54ce8> (a javax.swing.TimerQueue)
at javax.swing.TimerQueue.run(TimerQueue.java:231)
- locked <0x10e54ce8> (a javax.swing.TimerQueue)
at java.lang.Thread.run(Thread.java:534)
"Java2D Disposer" daemon prio=10 tid=0x030c2f10 nid=0x99c in
Object.wait() [760f
000..760fd8c]
at java.lang.Object.wait(Native Method)
- waiting on <0x10d6d850> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
- locked <0x10d6d850> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at sun.java2d.Disposer.run(Disposer.java:100)
at java.lang.Thread.run(Thread.java:534)
"AWT-EventQueue-0" prio=7 tid=0x030bd818 nid=0x95c waiting on
condition [758e000
..758fd8c]
at sun.java2d.pipe.PixelToShapeConverter.fillRect(PixelToShapeConverter.
java:44)
at sun.java2d.pipe.ValidatePipe.fillRect(ValidatePipe.java:46)
at sun.java2d.SunGraphics2D.fillRect(SunGraphics2D.java:2066)
at com.kbs.vide.util.gui.DynamicKuberreButton.drawPixel(DynamicKuberreBu
tton.java:314)
at com.kbs.vide.util.gui.DynamicKuberreButton.paintBackground(DynamicKub
erreButton.java:140)
at com.kbs.vide.util.gui.DynamicKuberreButton.paintButton(DynamicKuberre
Button.java:250)
at com.kbs.vide.util.gui.ImageButton.paintComponent(ImageButton.java:229
)
at javax.swing.JComponent.paint(JComponent.java:808)
at javax.swing.JComponent.paintChildren(JComponent.java:647)
- locked <0x10cb9ab0> (a java.awt.Component$AWTTreeLock)
at javax.swing.JComponent.paint(JComponent.java:817)
at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4787)
at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4740)
at javax.swing.JComponent._paintImmediately(JComponent.java:4685)
at javax.swing.JComponent.paintImmediately(JComponent.java:4488)
at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:410)
at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(System
EventQueueUtilities.java:117)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:141)
at java.awt.Dialog$1.run(Dialog.java:540)
at java.awt.Dialog.show(Dialog.java:561)
at java.awt.Component.show(Component.java:1133)
at java.awt.Component.setVisible(Component.java:1088)
at com.kbs.vide.util.gui.KuberreDialog.setVisible(KuberreDialog.java:283
)
at com.kbs.vide.client.gui.MainAdapter.actionPerformed(MainAdapter.java:
68)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
86)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
)
at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1
113)
at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseRelease
d(BasicMenuItemUI.java:943)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
"AWT-Windows" daemon prio=7 tid=0x030ae538 nid=0x870 runnable
[754f000..754fd8c]
at sun.awt.windows.WToolkit.eventLoop(Native Method)
at sun.awt.windows.WToolkit.run(WToolkit.java:262)
at java.lang.Thread.run(Thread.java:534)
"AWT-Shutdown" prio=5 tid=0x0309a950 nid=0xb44 in Object.wait()
[750f000..750fd8
c]
at java.lang.Object.wait(Native Method)
- waiting on <0x10cc1dc0> (a java.lang.Object)
at java.lang.Object.wait(Object.java:429)
at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
- locked <0x10cc1dc0> (a java.lang.Object)
at java.lang.Thread.run(Thread.java:534)
"Signal Dispatcher" daemon prio=10 tid=0x009c29f8 nid=0x314 waiting on
condition
[0..0]
"Finalizer" daemon prio=9 tid=0x009c0130 nid=0x7bc in Object.wait()
[2baf000..2b
afd8c]
at java.lang.Object.wait(Native Method)
- waiting on <0x10cb8cc0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
- locked <0x10cb8cc0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
"Reference Handler" daemon prio=10 tid=0x009bed00 nid=0x284 in
Object.wait() [2b
6f000..2b6fd8c]
at java.lang.Object.wait(Native Method)
- waiting on <0x10cb8d28> (a java.lang.ref.Reference$Lock)
at java.lang.Object.wait(Object.java:429)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
- locked <0x10cb8d28> (a java.lang.ref.Reference$Lock)
"VM Thread" prio=5 tid=0x009fb640 nid=0xf4 runnable
"VM Periodic Task Thread" prio=10 tid=0x0003f9a8 nid=0x4a8 waiting on
condition
"Suspend Checker Thread" prio=10 tid=0x009c2470 nid=0x2d0 runnable
Thanks
SubbaRao
|
|
|