Popular Posts
SwiXml - TabbedPane TabbedPane.xml <?xml version="1.0" encoding="UTF-8"?> <panel layout="BorderLayout">     <label... jQuery Validation Engine default options ASP.NET MVC 5 Attribute Routing Enable attribute route Global.asax public class MvcApplication : System.Web.HttpApplication {     protected void Application_Start()     {...
Blog Archive
Stats
In applet, get resources in class directory
import java.applet.Applet;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

public class WebApplet extends Applet {

    public String getResource() throws IOException {
        URL url = getClass().getClassLoader().getResource("sgb/html/" + file);
        InputStream input = url.openStream();
        InputStreamReader reader = new InputStreamReader(input);
        BufferedReader buffer = new BufferedReader(reader);
        String line = null;
        StringBuilder sb = new StringBuilder();
        while ((line = buffer.readLine()) != null) {
            sb.append(line);
        }
        buffer.close();
        reader.close();
        input.close();
        return sb.toString();
    }
}