| Irony (not that you'll see this subject anyways) |
|
 |
Index ‹ java-programmer
|
- Previous
- 2
- getting hostname from NT machine via CitrixHi All,
I don't know if any one can help or has any ideas about this.
We are writing a web based application which will run on a Unix box. It will
be accessible only via a login to Citrix from client machines. We have
achieved a transparent login to the application (running in Tomcat) using an
LDAP lookup. What we are stuck on is the following. We would like to be able
to get the hostname of the NT machine which is logging on. Someone has
suggested that we may be able to do this using a signed applet. I have no
experience with Applets at all & wondered if any one knows if this is
achievable or has accomplished anything similar? Any other ideas on how we
might do this?
Many thanks
--
-P
"Programs that are hard to read are hard to modify.
Programs that have duplicated logic are hard to modify.
Programs with complex conditional logic are hard to modify"
( Kent Beck)
- 3
- generate private key from a exist fileHi
i want to generate a private key from a exist file. i tried this but it
dosen't works!
---------Code--------------
FileInputStream keyfis = new FileInputStream("keyCarlaSchaffner.pem");
//"keyCarlaSchaffner.der"
byte[] encKey = new byte[keyfis.available()];
keyfis.read(encKey);
keyfis.close();
X509EncodedKeySpec privKeySpec = new X509EncodedKeySpec(encKey);
KeyFactory kf = KeyFactory.getInstance("RSA");
PrivateKey pk = kf.generatePrivate(privKeySpec);
---------Code end ----------
i have the private key file in pem and der encoded version, but both didn't
work.
PEM :
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,F836EA29BA0C7925
....
...
...
-----END RSA PRIVATE KEY-----
DER: no readable
the exception is:
--------------------------------
java.security.spec.InvalidKeySpecException: Key spec not RSA.
at
com.sun.net.ssl.internal.ssl.JSA_RSAKeyFactory.getPrivateKeyData(DashoA6275)
at
com.sun.net.ssl.internal.ssl.JS_KeyFactory.engineGeneratePrivate(DashoA6275)
at java.security.KeyFactory.generatePrivate(KeyFactory.java:237)
--------------------------------
has anyone a idea?
thanks carla
- 5
- Add ActionListener to an Action
Okay so Action is fine for centralising event handling for multiple controls
of the same function. But I want to add a plain ActionListener for this
event. Seems reasonable. If I was just using ActionListeners I would add
as many as I like to a component. And they'd all be notified, but if I use
Action then I need to add the ActionListener to the Action, I can't.
Do I really need to get my subclassed AbstractAction to manage
ActionListeners and propagate the ActionEvent by calling
super.actionPerformed ?
Is there a better way? Other than abusing PropertyChangeListener ?
--
Mike W
- 6
- changing Reader midstreami have what seems to be a fairly common problem, but i can't seem to find an
answer... i have a java program which opens a connection to a webpage and
seeks to read the webpage in. if the charset is defined in the header, then
no problem - i simply set up my InputStreamReader using the correct Charset
and away i go. but if the charset is defined in a META tag, then i want to
be able to recognize that.
a good example of why this is important: Yahoo! Japan uses EUC-JP encoding,
and specifies it in the header. Excite Japan uses Shift_JIS encoding, and
specifies it in the META tag.
here's some pseudocode:
URL url = new URL(webpage);
URLConnection conn = url.openConnection();
if (conn.contentType() != null)
charset = getCharset(conn.contentType()); // yay!
else
charset = ISO-8859-1; // default
InputStream = conn.getInputStream();
BufferedReader reader = new BufferedReader(new
InputStreamReader(in,charset));
while (get data from reader) {
if (data is META tag && content-type specifies a new charset) {
reader = new BufferedReader(new InputStreamReader(in,newCharset));
// this is the problem
}
}
this, unfortunately, does not seem to work. is there a better (i.e.,
standard) way to do this?
thanks!
daniel
- 6
- DAO - best practicesHi All,
I know this is a little bit OT
Suppose I have 2 tables customers and products, customer can buy many
products, product can be bought by many customers - typical n:m
relationship so 3rd table is a must: i.e. purchases
So I need 3 DAO: ProductDAO, CustomerDAO and PurchaseDAO.
How do you deal with i.e. reports - table joins, left joins or
statistics (group by, max, min etc)?
do you create DAOs for that? (especially table joins - probably not)
raports and statistics from i.e. 7 tables can be only read-only, so
insert, update, delete methods
are inadequate.
thanks in advance for shedding some light on this
best regards
R
- 7
- Pls Help!!!Hi All,
I want to write conditional regular expression in Java/J2EE.
Any sample example will be preferrable. In Dot Net , conditional regex
are working properly but i want to do it in java/J2EE.
Like i have following regex in dot net which i want to write in java/
J2EE. :-
(([<]title).*(\bcontract(s)?\b|\border(s)?\b|\bsign(s|ed)?\b|
\bw[io]n(s)?\b).*(title[>]))(?=(?>(.|\n)*?([<]body).{1,1000}?(\b(re)?
new\b|\bpen(s)?\b).{1,100}?(\bdeal(s)?\b)))
Any help will be truely appriciated.
Thanks in advance.
- 8
- Final field & custom serialized formatI have a class which has a single field:
private final File nameFile;
When serializing it, I want to save it as a String, rather than a File.
This will allow me to better check for platform incompatibilities during
deserialization.
I can serialize it like so:
private transient final File nameFile;
private void writeObject(ObjectOutputStream out) throws IOException
{
out.defaultWriteObject();
out.writeObject(nameFile.getPath());
}
A straightforward approach to deserialization won't work, however, for
the obvious reason that I won't be able to set nameFile to the File I
construct from my deserialized String.
I can't be the first person to run into this. What have others done in
this situation?
Thanks!
--
========================================================================
Ian Pilcher email***@***.com
========================================================================
- 8
- Servlet as JMS Sender/Receiver ?
Can a Servlet act as both a JMS Message Sender and Receiver?
Clients who call on this servlet would be BLOCKING for a response.
The servlet itself upon receival of client request sends the message to
the request MQ queue. This message will be picked up by a standalone
app(JMS client), after processing would write to the response queue.
Meanwhile the servlet would be polling onto the response JMS queue with
receive(timeOutPeriod) with the appropriate msg-selector.
Is there any other approach to avoid the blocking receive. I have read
that server side polling would use lot of sys resources and block the
threads. What other feasible approach is possible?
Having an asynch imple. is a NO in this case because clients cannot
write messages to the Queue.
The appln is hosted on WebSphere5 ND.
Any feedback would be very helpful. Thanks.
- Guru.
- 10
- Major enhancements to Swing Drag and Drop in MustangHi Everyone,
If you happen to be interested, I've just published a blog introducing
the major enhancements made to Swing Drag and Drop for Mustang. You can
find it here:
http://weblogs.java.net/blog/shan_man/archive/2006/01/first_class_dra.html
I hope you have a chance to try out one of the recent builds. And of
course, feel free to post any questions or comments at the blog.
Thank you, and all the best!
Shannon
- 11
- java code compressioni'm writing an applet which is growing a little out of control, and i'm
trying to cut down on the size of the final applet without reducing
functionality. is there a way to strip all excess symbols out of the applet
at compile time, or munge the internal names so that they're shorter?
coming from a C++ background, i have all of these nice, long explanatory
names for my constants - which end up taking an absurd amount of space.
any help would be appreciated!
daniel
- 13
- /~/~/~/~/~/Earn $10,000 A Month From Your Bedroom/~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/
~/~/~//~/~/~/~/~//~/~/
Earn $10,000 A Month From Your Bedroom!
Wish You Could Find Just One REAL LEGITIMATE WAY To Make REAL MONEY
Right From
Your Bedroom - Starting Today? Well... Listen Up -- In The Next 4
minutes
I'll show you how!
For More Details Check the Links Below:
http://solutionformakingmoneyonline.blogspot.com/
http://accessmoneyonline.blogspot.com/
/~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/~/~/~//~/~/
~/~/~//~/~/~/~/~//~/~/
- 15
- JDBC and threadsHi,
I have a question on threads, probably very basic but I'm having a
hard time figuring it out. I've created a little test app for
experimentation on this subject.
The app shows a JTable that is filled with data from a database. The
user can change the data in the JTable wherupon the JTable passes this
data to the database. Now this part I would like to do in a different
thread, so that the UI is not slowed when communication with the
database is taking place. To do this I've created a class has a
private class that extends Thread. The run() method of this class is
then supposed to do the JDBC stuff like creating a statement and
executing the update.
However, here I have a problem. The run() method cannot throw an
SQLException. I would like the exception to be thrown rather than
caught in the run() method, so that I can deal with the exception in
my main thread and have the UI respond accordingly (meaning: do not
update the tableModel with the newly entered value).
Does anyone have any suggestions for me how I could implement this in
a different fashion? The aim is to get the JDBC stuff to run in a
different thread than the UI does.
Thanks very much, Jonck
- 16
- Which Compiler?Hi. Is there another good free compiler (besides the JDK) that is
recommended? I would like to hear from those who have used it if there
is. Thanks, Steve
- 16
- Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com )Max 90 Sneakers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 91, Supplier ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 95, Shoes Supplier ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 97, Trainers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2003, Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 2004, Shoes Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max,2005, Shop ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2006, Shoes Shop ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 360, Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, Ltd Shoes Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, Men's, Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 2, Women's Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 3, Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 4, Shoes Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn ,6, Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox NZ Shoes Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox OZ Sale ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 2 Shoes Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 3 Distributor ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Bmw Shoes Distributor ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Elite Shoes Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Monster Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox R4 Running Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox R5 Mens Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Ride Womens Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Rival Shoes Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Energia Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox LV Sneaker ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Turbo Suppliers ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Dendara Trainer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 1, Seller ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 2, Shoes Seller ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 3, Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 4, Shoes Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 5, Chaussure Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 6, Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 7, Shoes Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 8, Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 9 ,Shoes Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 10, Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Jordan, 11 Shoes Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 12 Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 13 Shoes Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 14 Shoes Sell ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 16 Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 17 Shoes Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 18 Offer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 19 Shoes Offer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 20 Manufacture ( paypal accept ) ( www.sneaker-fan.com
)
Max 90 Sneakers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 91, Supplier ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 95, Shoes Supplier ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 97, Trainers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2003, Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 2004, Shoes Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max,2005, Shop ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2006, Shoes Shop ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 360, Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, Ltd Shoes Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, Men's, Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 2, Women's Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 3, Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 4, Shoes Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn ,6, Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox NZ Shoes Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox OZ Sale ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 2 Shoes Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 3 Distributor ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Bmw Shoes Distributor ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Elite Shoes Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Monster Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox R4 Running Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox R5 Mens Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Ride Womens Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Rival Shoes Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Energia Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox LV Sneaker ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Turbo Suppliers ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Dendara Trainer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 1, Seller ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 2, Shoes Seller ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 3, Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 4, Shoes Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 5, Chaussure Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 6, Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 7, Shoes Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 8, Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 9 ,Shoes Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 10, Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Jordan, 11 Shoes Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 12 Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 13 Shoes Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 14 Shoes Sell ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 16 Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 17 Shoes Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 18 Offer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 19 Shoes Offer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 20 Manufacture ( paypal accept ) ( www.sneaker-fan.com
)
Max 90 Sneakers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 91, Supplier ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 95, Shoes Supplier ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 97, Trainers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2003, Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 2004, Shoes Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max,2005, Shop ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2006, Shoes Shop ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 360, Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, Ltd Shoes Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, Men's, Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 2, Women's Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 3, Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 4, Shoes Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn ,6, Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox NZ Shoes Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox OZ Sale ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 2 Shoes Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 3 Distributor ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Bmw Shoes Distributor ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Elite Shoes Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Monster Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox R4 Running Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox R5 Mens Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Ride Womens Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Rival Shoes Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Energia Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox LV Sneaker ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Turbo Suppliers ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Dendara Trainer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 1, Seller ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 2, Shoes Seller ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 3, Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 4, Shoes Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 5, Chaussure Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 6, Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 7, Shoes Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 8, Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 9 ,Shoes Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 10, Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Jordan, 11 Shoes Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 12 Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 13 Shoes Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 14 Shoes Sell ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 16 Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 17 Shoes Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 18 Offer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 19 Shoes Offer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 20 Manufacture ( paypal accept ) ( www.sneaker-fan.com
)
Max 90 Sneakers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 91, Supplier ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 95, Shoes Supplier ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 97, Trainers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2003, Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 2004, Shoes Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max,2005, Shop ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2006, Shoes Shop ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 360, Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, Ltd Shoes Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, Men's, Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 2, Women's Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 3, Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 4, Shoes Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn ,6, Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox NZ Shoes Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox OZ Sale ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 2 Shoes Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 3 Distributor ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Bmw Shoes Distributor ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Elite Shoes Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Monster Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox R4 Running Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox R5 Mens Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Ride Womens Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Rival Shoes Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Energia Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox LV Sneaker ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Turbo Suppliers ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Dendara Trainer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 1, Seller ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 2, Shoes Seller ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 3, Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 4, Shoes Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 5, Chaussure Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 6, Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 7, Shoes Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 8, Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 9 ,Shoes Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 10, Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Jordan, 11 Shoes Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 12 Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 13 Shoes Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 14 Shoes Sell ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 16 Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 17 Shoes Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 18 Offer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 19 Shoes Offer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 20 Manufacture ( paypal accept ) ( www.sneaker-fan.com
)
Max 90 Sneakers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 91, Supplier ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 95, Shoes Supplier ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 97, Trainers ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2003, Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 2004, Shoes Wholesale ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max,2005, Shop ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Max, 2006, Shoes Shop ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, 360, Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max, Ltd Shoes Catalogs ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, Men's, Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 2, Women's Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 3, Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn, 4, Shoes Customize ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Max Tn ,6, Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox NZ Shoes Supply ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox OZ Sale ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 2 Shoes Store ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox TL 3 Distributor ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Bmw Shoes Distributor ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Elite Shoes Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Monster Manufacturer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox R4 Running Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox R5 Mens Shoes ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Ride Womens Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Rival Shoes Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Energia Wholesaler ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox LV Sneaker ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Turbo Suppliers ( paypal accept ) ( www.sneaker-fan.com )
Nike Shox Classic Shoes Suppliers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Shox Dendara Trainer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 1, Seller ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 2, Shoes Seller ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 3, Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 4, Shoes Collection ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 5, Chaussure Shoes ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 6, Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 7, Shoes Catalog ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 8, Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 9 ,Shoes Customized ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 10, Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Jordan, 11 Shoes Wholesalers ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 12 Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 13 Shoes Factory ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 14 Shoes Sell ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 16 Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 17 Shoes Exporter ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 18 Offer ( paypal accept ) ( www.sneaker-fan.com )
Nike Air Jordan, 19 Shoes Offer ( paypal accept ) ( www.sneaker-fan.com
)
Nike Air Jordan, 20 Manufacture ( paypal accept ) ( www.sneaker-fan.com
)
- 16
- Per-Session Cookies and Java ProgramsHello. I'm currently writing a java program that connects to a website
and reads information from it. Eventually it will return a URL for the
user to go to. The only problem is there are a lot of "per-session"
temporary cookies involved. I haven't found a way to go from the java
program's URL to the URL in IE because of all of the per-session
cookies involved. Does anyone have any idea how I can save the
per-session cookies from java into IE or a way around this? My last
hope is just opening the webpage in the java gui.
|
| Author |
Message |
Twisted

|
Posted: 2007-8-6 2:48:00 |
Top |
java-programmer, Irony (not that you'll see this subject anyways)
On Aug 4, 11:09 am, Joshua Cranmer <email***@***.com> wrote:
> In terms of off-topic-ness, the first posts started delving into
> implementing operator overloading, which then started into a discussion
> over exponentiation operators -- both of which are mildly on-topic. Then
> came a response by Twisted saying that COBOL was responsible for a lot of
> Y2K bugs.
Which was a perfectly "on-topic" reply to the previous post. It's
called topic drift. Get used to it.
[snip remainder]
Stop blaming me. It is never correct to blame me; leave me in peace.
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- JVM automatic updatesTwice now, I rave rejected a prompt to update the JRE in the morning
before I go out. On both occasions the PC was also on in the evening
(for longer periods) but the the prompt did not appear.
Can anyone confirm that Java only requests updates in the morning?
--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
- 2
- jar helphi
i have been trying to make a jar file for the following files
hello.java
hello.class
with the following command
jar cf hello.jar hello.*
it is created and with
jar tf hello.jar
i am able to see the list of files which is in this case
META-INF/
META-INF/MANIFEST.MF
hello.class
hello.java
but it doesn't run with
java -jar hello.jar
following error appears
Failed to load Main-Class manifest attribute from
hello.jar
i tried to fix it with
jar cfm hello.jar mymainclass hello.*(after creating mymainclass with the
entry Main-Class: path.hello)
to no avail!
and another thing is although the dir META-INF is shown as above it is not
created in the folder..where is it created??
help please
Greetingz
Sunil
- 3
- how to pass this before supertype constructor has been calledPaul J. Lucas wrote:
> No I don't. I can do what I want in C++ just fine. As long as
> I don't try to access anything *through* "this" I'm fine. It'd
> perfectly safe. It's 100% portable. It just works.
Paul, there's really no answer then, other than "go use C++ and do it".
You can't do what you're asking in Java. Your winning an argument isn't
going to change your compiler and magically let you do it. You will
simply need to allow the initialization to be completed from within the
derived class's constructor, because you can't just reference this when
defining the parameters to the superclass constructor.
Maybe you think that you should be able to do so, and of course it would
be possible to define a language similar to Java in which you could, but
when you're working in Java, you can't.
--
www.designacourse.com
The Easiest Way to Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
- 4
- 5
- Huge titted pornstar Danielle Derek teaches a teen how to fuck Just few link on some movies...
All just for you...
Download
>>>>> http://download-video.12w.net
>>>>> http://world-sex.urllogs.com
>>>>> http://video-sex.12w.net
CLICK FREE DOWNLOAD VIDEO PORN...
L
I
C
K
T
O
W
A
T
C
H
V
I
D
E
O
P
O
R
N
D
O
W
N
L
O
A
D
F
R
E
E
.
.
.
W
E
L
C
O
M
T
O
M
O
V
I
E
S
P
O
R
N
D
O
W
N
L
O
A
D
.
.
.
- 6
- Getting plugin info from internet web serverHi,
I have written an application that is used for programming
flash/SRAM devices that are soldered to a PCB. The application is written
in Java, and I have split the functionality between the main application
and plugins that can be user selected then loaded. Currently I have 3
different plugins, for programming devices via JTAG and via a serial port.
What I would like to do is download information relating to the
plugins (version, dependencies, jar filename etc) and the plugins
themselves (packaged as jar files) from the internet. I plan to include a
file manager in my main application to access this information from a web
server, so that a user of the software doesn't have to manually download
plugins and copy them to the appropriate place in their local filesystem.
In addition, the file manager will also be able to check that the plugins
on a user's systems are the latest, compared to those available on the
web server.
My question is what is the easiest way to do this? If possible, I would
like to keep the web server side as simple as possible.
Thanks,
Paul Taylor.
--
Remove _rem_ before replying by email.
- 7
- Clever way to change fonts on the fly...??blah wrote:
> All the various Swing componets I use have their "font values" set to a
> global font that is discovered in a config file when my app loads up. Now
> if I change the value, my application needs to be restarted in order to get
> the new font.
>
> I know I can go around and manually set the new chosen font into each and
> every component... but I'm wondering if there's an easier way to handle all
> of this...
>
> Anyone face this or have any suggestions?
>
>
Swing gets its fonts via UIManager. Override the default values and then
follow the procedure for changing the Look And Feel.
- 8
- NetBeans to abandon Java ? It makes you wonder...Today I was directed to a satisfaction survey on the NetBeans website
after starting NetBeans 6. I expresses my disdain about the product,
said that the current setup does not allow me to get my work down (I'm
still using NB 5.5.1 for my Java development) but that I have to admit
that the whole documentation as well as the overall speed is satisfying.
Then I got curious to the end results of the survey, couldn't find any,
but I did stumble upon this page with lots of success stories about
excited developers who've (re)discovered NetBeans:
http://www.netbeans.org/servlets/NewsItemView?newsItemID=1179.
After reading that whole page I was basically left with one simple
question: "And what about Java?".
I quote from the page: "Developers continue to rave about NetBeans 6.0
IDE features--its support for Ruby and C++, the debugger, the easy
installation process and more.". There isn't much changed with regards
to the installation, NB5.5.1 also has a good debugger and then what ?
Reading on there are a few success stories. Funny though how those
reflect on the IDE as a whole, RoR or C++. Reading on again we see 4
more stories: "Amazing RoR support", "Cleaner, slimmer, more focused IDE
than Eclipse" and finally "A lot of features".
Cool. SO like, why am I wondering why I don't read so many success
stories which are fully related to Java ?
Heck, here I am utilizing NB6 as we speak to debug a PHP powered
website, and its doing a pretty good job as well, apart from the
sometimes very annoying delays its causing me. But thats a minor issue,
and only happening very sporadically.
Still... Is NetBeans shifting their focus ? I have to wonder. It would
explain something about my horror experiences where (IMO) important Java
related features like autocomment (javadoc administration) and pattern
support (javabean administration) were removed. While I don't consider
NB6 to be a decent Java editor I have to admit its doing well on PHP.
Errr... I think I'll stop here :P
With kind regards,
Peter
- 9
- ports/113467: Multiple "missing return value" errors buildingThe following reply was made to PR ports/113467; it has been noted by GNATS.
From: "Robert Backhaus" <email***@***.com>
To: email***@***.com, email***@***.com
Cc:
Subject: Re: ports/113467: Multiple "missing return value" errors building JDK on current
Date: Tue, 3 Jul 2007 13:14:32 +1000
Confirming that this is still an issue with current patchset. I am
bootstrapping with diablo-jdk-1.5.0.07.01_5 for freeBSD 6 (from
ports).
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 10
- font.properties.zh_TW for 1.4.2
--AqsLC8rIMeq19msA
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Hi,
The font.properties.zh_TW file in native jdk14, inherited from
native jdk14 does not work as expected, and here is the right one for
it. Could you merge this into the next patchset?
Thanks!
--
Clive Tong-I Lin <email***@***.com> | http://tongi.org | PGP KeyID: A008C03E
--AqsLC8rIMeq19msA
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
--AqsLC8rIMeq19msA--
- 11
- GUI simple pong newbieHello i have just recently finished completing the code to a simple applet
that bounces a ball around the screen i am just wondering what it would
take to turn that into a pong program where would i set up the method for
the paddles and how to i distinguish between events of ball movement key
pressing and collisions?
--
Message posted via http://www.javakb.com
- 12
- Customized form authentication with JSPLongwinded explanation ahead--I want to make sure I don't leave any
important details out.
I'm maintaining a client/server system that we use for automated grading of
student CS assignments. The basic
architecture consists of the grading server app itself and a servlet client
for student access, which runs on Tomcat in our case. Right now, the
servlet is starting to get large, as it's hardcoded to print one of several
pages depending on a URL parameter, and I'd like to break this into several
JSP pages instead.
We don't use any kind of standard authentication method in the servlet. The
servlet login page accepts the student's username/password as well as the
course they're enrolled in (chosen from a list), and we authenticate this
inside doGet() by passing a custom message object to our grading server,
which checks whether the student is enrolled in the course they chose, as
well as whether their username/password is valid. If their information is
valid, we store it in the HttpSession object and use that as they navigate
the site.
The problem is, I'm not sure how to translate this into JSP. I've seen some
examples using j_security_check, j_username, etc., but from what I can tell,
it looks like those are handled completely by the webserver, and requires
the user information to be stored in some file that the webserver can
access. This isn't a solution for us, because the grading server may not
even be on the same physical machine as the webserver.
So basically, here's what I'm looking for: A form-based authentication
method that lets me verify the student's username, password, and course
enrollment all at once, and store that in a session that I can use across
all the JSP pages. Obviously, I'd like all the pages to be protected so
they redirect to the login page if the user isn't logged in this session,
and I'd also like to be able to handle situations where if the session times
out and the user tries to navigate, it returns him to the login page, and
then redirects him to whatever original page he was trying to navigate to
when he successfully logs in.
From scouring other newsgroup posts, it looks like I might need to create my
own custom Realm (?), but I'm not sure where to start. I'd also like
something that's not tied specifically to Tomcat, but would work on most
popular JSP-supporting webservers, if possible.
If anyone can give me some advice or a push in the right direction, I'd
really appreciate it!
Thanks,
- 13
- find windows folderHi all! I have a question about Java and Windows systems...It's possible to
obtain the exact path of windows installation folder using Java functions? I
need this to be valid on different versions, from Win98 to WinXP
Thanks at all! Massimo
- 14
- using proguard for lib jarsI need to shrink app jar itself and lib jars too, but it dosent work.
I have unpacked jars into a dir, put app classes threre and made a big jar.
Then i used proguard but it still didnt work.
- 15
- Problem to download a file from 2 browsers at the timeI have this JSP that download an excel file.
It works fine if I use only one browser at the same time.
The problem is when I try to do this but from 2 browsers at the same
time. From each browser I can download a part of the file but not the
complete file.
It seems the browsers are sharing the bandwidth and when it starts to
download a file the other stops.
I have look the logs, and I saw the file has downloaded to the computer
and while the the jsp is working.
I don't undestand why the file has finished to download and while the
jsp is still executing.
Can you help me please?
do anybody try this JSP and tell me if the result is the same as me?
------------------------------------------JSP
-----------------------------------------------------------------------------------
<%@page contentType="application/vnd.ms-excel"%>
<%@ page language="java" import="java.io.*"%>
<%@ page language="java" import="java.util.*"%>
<%
Date fecha = new Date();
java.sql.Date fechaSQL = new java.sql.Date(fecha.getTime());
Calendar calendario = Calendar.getInstance();
calendario.setTime(fecha); // fecha es el Date de antes.
String strHour = String.valueOf( calendario.get(Calendar.HOUR) );
String strMinute = String.valueOf( calendario.get(Calendar.MINUTE) );
String strSecond = String.valueOf( calendario.get(Calendar.SECOND) );
String nombre = "FILE" + strHour + strMinute + strSecond + ".xls";
System.out.println( " IN OF " + nombre );
response.setContentType( "application/x-download" );
response.setHeader("Content-type","application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment; filename=\""
+ nombre + "\"");
System.out.println( nombre + " START" );
for (int l=0;l<30000;l++){
System.out.println( nombre + " " + l );
for (int k=0;k<250;k++){
out.write(nombre + " : ("+ l + "," + k + ")" + "\t" );
}
out.write("\n");
}
System.out.println( nombre + " END" );
%>
|
|
|