|
|
|
1000 Java Tips ebook
|
|
 

Free "1000 Java Tips" eBook is here! It is huge collection of big and small Java
programming articles and tips. Please take your copy here.
Take your copy of free "Java Technology Screensaver"!. |
|
Easy Learn Java: Programming Articles, Examples and Tips - Page 81
Previous
1060 Stories (530 Pages, 2 Per Page)
Next
ROXES Ant Tasks 1.0 Open Source released
|
ROXES Technologies today announced the availability of ROXES Ant Tasks 1.0 as Open Source.
This suite provides 3 custom tasks for the famous Apache Jakarta Ant (
http://ant.apache.org)
targeting java application deployment.
ROXES Ant Tasks was developed as supplemental module to the
forthcoming Enterprise Installation Software ROXES Encore. ROXES Encore
will heavily simplify the creation of Setup Software for the Enterprise
based on Java and Jakarta Ant ( http://ant.apache.org). The main target
of ROXES Encore will be installation/configuration of web applications and
j2ee deployment based on Ant.
In detail ROXES Ant Tasks contains:
1. sfx - creates native self extracting executables out of ZIP archives.
Currently supported target platforms are Windows, MacOS X, almost any
Unix and self executable JAVA Jar files.
2. jstub - creates native executables for Windows, MacOS X and almost any
Unix System out of a working JAR archive.
3. jnlp - simplifies the creation of JNLP files for JAVA Web Start (
http://java.sun.com/products/javawebstart/ ).
The jnlp task is able to handle ANT Filesets as resources. This feature
makes jnlp file creation using the jnlp Task much more easier.
Find out more here: http://www.roxes.com/produkte/rat.html
802 bytes more | 43 comments | | Score: 5
|
Posted by Anonymous on Friday, September 12, 2003 (13:48:56) (4046 reads)
|
In our application we try to send an image over socket connection in binary form
|
Question: In our application we try to
send an image over socket connection in binary format.
It works with some systems and does not with others...
In some pairs like Linux based Client-Server we get
images. When Server and Client reside on different system we
often getting strange "digital garbage" after transmission...
Answer: Actually it is known problem and
best solution is to use Base64 format.
It will slightly increase the amount of traffic (~30%). An image
will be sent as a String...
22 comments | | Score: 0
|
Posted by jalex on Friday, September 12, 2003 (00:00:00) (4100 reads)
|
|
|