| Author |
Message |
thebigcheese1993
Joined: 02 Oct 2004 Posts: 8
|
Posted: Sat Jan 01, 2005 5:06 pm Post subject: Java Applet nested classes contain '$' in file name...? |
|
|
| I'm trying to upload class files to a free webhosting service, (tripod.com) but they don't allow files to have special characters, such as '$' in their filename. The applet has nested classes which contain the '$' character in their filename, therefore, they cannot be uploaded, and the applet will not work.My question: How can I get these files online and make the applet accessible by visiting a website? Is it possible with a free webhosting account? |
|
| Back to top |
|
 |
nattibadboy
Joined: 13 Oct 2003 Posts: 7
|
Posted: Tue Jan 18, 2005 6:47 pm Post subject: Java Applet nested classes contain '$' in file name...? |
|
|
| Bury them in a jar file and upload the jar file. |
|
| Back to top |
|
 |
ebosgramma
Joined: 01 Jun 2007 Posts: 6
|
Posted: Fri Feb 04, 2005 8:28 pm Post subject: Java Applet nested classes contain '$' in file name...? |
|
|
| Well, I've been able to upload java applets with a free geocities acount. My suggestion for you is to package your classes in a jar file, and upload the jar. Then, you can embed the applet onto a website with the code<applet archive=JarFile.jar code=MainClass.class></applet> |
|
| Back to top |
|
 |
|