Relative Content

Tag Archive for javaapplet

Java Applet not running in vscode

I am trying to learn java applet in vscode. But I am not able to run it in my system.
my code is: import java.applet.*; import java.awt.*; /* <applet code= "Applethome" height="100" width="200"> */ public class Applethome extends Applet { public void paint(Graphics g){ g.drawLine(20, 20, 180, 80); } }

Creating a Java Desktop Application for File and Folder scan

I am currently working on a tool, previously i used to use Java applet / Swing to create desktop application. now i think Netbeans is no longer supporting them. I have attached the code. if anyone can help me create a Desktop application, that will be great.