hi helper,
I would like to create an xml file using multiple collection,
xml example:
<chart a=111 b=222>
<tag1>
<c=111 d=222>
<e=111 f=888>
</tag1>
<tag2>
...
I have a program that attempts to make an SSL /HTTPS connection but it returns the following java exception:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException:
...
I have the code in ASP the below,
transid=CLng(DateDiff("s", "01/01/1970 00:00:00", Now))
how do I conver this in java?
i am doing some conversion process on the project ...
how to access different mailboxes from java . and pick the files attached in the mail box .
i need to have poller mechanism also which will intimate me whenever a new mail has come ...
HaspMap does not allow duplicate keys. Which datatype should i use if I have to store values like
Key ---Value
c1 ----- 1
c1 ----- 2
c2 ----- 1
c2 ----- 3
....
Please help
Hi -
I need a few pieces of code that would take a java floating-point number and convert into a fixed-point as follows:
32 bit integer
s nnnnnnnnnnnnnnnn ddddddddddddddd
where
...
If I wanted to make the words in the window reverse when the Reverse button is pressed, would I need to create a separate method?
Hi -
The below code published some content into the database. I need to turn this code into a mutithreaded code so that the operation happens fastly. And the reason i need to have this is b...
Hello
i have a List<File> queryPool;
in findImage() method, I loop thru the queryPool and find one image called queryImage of type File, which i return to main function
and while ...
Hi,
Still trying to get a part of a programme working following up this question http://www.experts-exchange.com/Other/Math_Science/Q_23447301.html.
I'm having a problem seperating the c...
Why the matches function cannot find the td tag? it always return false, why?
It should return true, isn't it?
I'm pretty new to Java so this question should be pretty easy for most of you guys to answer. For discussion purposes, I have a text file with the following lines that I've read into a 2d arr...
I have a String in the form of
<EMBED src='C:\Documents and Settings\dmadmin\Docu\Viewed\0906985f8000197c.pdf' height='490' width='1000'/>
In this String, I want to replace "C:\Documents...
Hello,
I've a problem passing an int-array to a static generic function. The Compiler says 'The method sort(T[]) in the type Quick is not applicable for the arguments (int[])'. It worked fi...
Hello Experts,
I need your assistance how the code should be modified as to get the number as a parameter than to be predefined in the code
If someone can elaborate i'd be grateful !
...
Hello Experts,
I need your assistance about this error which occurs after when the client sends message to server
Exception in thread "main" java.util.ConcurrentModificationException
...
I'm using KeyPairGenerator to create a public and private key. I then want to save the private key in a keystore file and generate a cert which holds the public key.
I can generate the key...
Hello Experts,
I strongly need your assistance about this error:
Exception in thread "main" java.lang.NullPointerException
at MovingTilesApp.<init>(MovingTilesApp.java:47)
at LODServer...
HI.
How can I develop a chat application in Java with audio & video live streaming??
Thanks
I have an ant build xml file. Ant is running in jdk1.6. However, when I compile (javac), do a rmic and jar a couple of classes, I would like to do it using jdk1.5.
Can someone please show m...
I'm converting a legacy C++ interactive Win32/OpenGL app into a browser plugin for Firefox and IE. The initial plan was to use the NPAPI, then use the pluginhostctrl to wrap it as an ActiveX ...
In this code:
double myDouble = Double.NaN;
if (myDouble == Double.NaN) {
the comparison evaluates to false
this is the correct way:
if (Double.isNaN(myDouble)) {
but...why doesn't t...
hi all,
please help me on how to create an imageButton ( image on top of a button). So when I click the button, it do some action.
This is my code. Please help me continue from this
im...
I have the attached java code
the database Field "CODE" type is character 2 bytes. I want to get the Ascii code of each of 2 bytes. But when I print out (System.out.println()) the Ascii Cod...
hello there,
i installed the iReport and now i am trying to take printout of a form in my java application. the problem is i dont know how to link the label receipt no. in the ireport UI to...