cacn you help me with this one import java.awt.Graphics; import java.awt.Color; import javax.swing.JApplet; public class Smiley extends JApplet { public void paint (Graphics g) { super.paint(g); g.setColor(new Color (60,10,0)); //outline pants g.drawRect(393,275,199,80); g.drawRect(394,276,199,80); g.setColor(new Color (145,90,0)); //brown (pants) g.drawRect(395,300,197,54); g.fillRect(395,300,197,54); g.setColor(new Color (255,255,255)); g.fillRect(395,275,197,50); //fill white (pants) g.setColor(new Color (32,5,0)); //stripes g.drawRect(408,330,25,6); //1st g.fillRect(408,330,25,6); g.drawRect(450,330,25,6); [...]
Tags:JAVA Questions | 29 views
Hi, Is there any nice java API available for converting pdf to text file.
Tags:JAVA Questions | 16 views
here is my code: //if any of errprLists is not equal to 0, then initialWieght equals newWeight if(errorList[0]!=0 || errorList[1]!=0 || errorList[2]!=0 || errorList[3]!=0) { for(int i=0; i<row; i++) { initialWeight[i] = newWeight[i]; [...]
Tags:JAVA Questions | 19 views
Hi, I need a code for a virtual compass that I would like to include in an application that I manufactured for my task in school.Can anyone help me please?? Tnx