pregunta hacerca de applets
Publicado por luis (3 intervenciones) el 23/09/2004 07:20:12
hola pondre un texto que debe ir en el centro de un applet soy estudiante y he tratado de varias formas pero no puedo alguien me podria dar un ejemplo facil de como poner un texto largo en el centro del applet por favor este es el texto :
THE HIPPOPOTAMUS
Behold the hippopotamus!
We laugh at how he looks to us,
And yet in moments dank and grim,
I wonder how we look to him.
Peace, peace, thou hippopotamus!
We really look all right to us,
As you no doubt delight the eye
Of other hippopotami.
y al final debajo del lado derecho debe ir mi nombre
les agradecere su ayuda ya que yo trate de ponerlo asi y estoy seguro que no funcionara
import java.applet.*;
import java.awt.*;
public class Hello extends Applet {
public void paint(Graphics g) {
g.drawString("THE HIPPOPOTAMUS
Behold the hippopotamus!
We laugh at how he looks to us,
And yet in moments dank and grim,
I wonder how we look to him.
Peace, peace, thou hippopotamus!
We really look all right to us,
As you no doubt delight the eye
Of other hippopotami. ", 20, 20);
}
}
THE HIPPOPOTAMUS
Behold the hippopotamus!
We laugh at how he looks to us,
And yet in moments dank and grim,
I wonder how we look to him.
Peace, peace, thou hippopotamus!
We really look all right to us,
As you no doubt delight the eye
Of other hippopotami.
y al final debajo del lado derecho debe ir mi nombre
les agradecere su ayuda ya que yo trate de ponerlo asi y estoy seguro que no funcionara
import java.applet.*;
import java.awt.*;
public class Hello extends Applet {
public void paint(Graphics g) {
g.drawString("THE HIPPOPOTAMUS
Behold the hippopotamus!
We laugh at how he looks to us,
And yet in moments dank and grim,
I wonder how we look to him.
Peace, peace, thou hippopotamus!
We really look all right to us,
As you no doubt delight the eye
Of other hippopotami. ", 20, 20);
}
}
Valora esta pregunta


0