asked on
ASKER
ASKER
ASKER
ASKER
ASKER
<table>
<tr><td>
<p>If you cannot use the application after serveral minutes, please re-login</p>
</td></tr>
</table>
<br>
<applet code=a.b.q.a.class codebase="http://data.com/applet/" height=0 width=0 VIEWASTEXT name=Loading id=Loading align="bottom" MAYSCRIPT>
<param name=cabbase value="Proj.cab">
<PARAM NAME="archive" VALUE="Proj.jar">
<PARAM NAME="java_arguments" VALUE="-Xmx512m -Dsun.java2d.noddraw=true">
<param name="color" value="1">
<param name="isflash" value="false">
<param name="isshowpinyininput" value="false">
<param name="location" value="0">
<param name="Language" value="eng">
</applet>
</body>
</html>
ASKER
//: c02:HelloDate.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import java.util.*;
/** The first Thinking in Java example program.
* Displays a string and today's date.
* @author Bruce Eckel
* @author www.BruceEckel.com
* @version 2.0
*/
public class HelloDate {
/** Sole entry point to class & application
* @param args array of string arguments
* @return No return value
* @exception exceptions No exceptions thrown
*/
public static void main(String[] args) {
System.out.println("Hello, it's: ");
System.out.println(new Date());
System.getProperties().put( "http.proxyHost", "127.0.0.1" );
System.getProperties().put( "http.proxyPort", "8888" );
System.getProperties().put( "socks.ProxyHost", "127.0.0.1" );
System.getProperties().put( "socks.ProxyPort", "8889" );
System.out.println(System.getProperty("http.proxyHost"));
}
} ///:~
ASKER
ASKER
I made a conection first on the remote site by login and passward
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
Could you do the same but Charles Could NOT capture the response data from
http://www.cehjohnson.btinternet.co.uk/protean/speedtest.txt?dummy=8505545161610364928 by Java program.Probably yes, if my case does.
ASKER
Just for memo on this thread as reminder, need to set Permission on java.policy file ...
ASKER
ASKER
You mean I need to download decomplier to convert jar into java Right ?No, you need to extract the source from the jar
ASKER
ASKER
ASKER
If possilbe, why there is a lot decomplier in google search for jar to java
ASKER
JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.
TRUSTED BY
You have an applet - are you showing it in a browser?