security « class file « Java I/O Q&A





1. Java Client .class File Protection    stackoverflow.com

I am in the requirements phase of building a JEE application that will most likely run on a GlassFish/JBoss backend (doesn't matter for now). I know I shouldn't be thinking ...

2. Security manager that prevents reading files but allowes reading classes    stackoverflow.com

I want to create a custom SecurityManager that will prevent threads from reading files on the server. However, I do want them to be able to load classes. When I override the ...

3. Problem with security and File class    coderanch.com

I wrote the following program just to practice using the File class, and also recursion. It searches through a designated drive (D:\ in this case, will be modifying it to search all drives), and returns the path of the file designated by the command-line argument: import java.io.* ; public class DoFile { private static File myFile ; public static void ...

4. Java Applet .class file Security Issue    forums.oracle.com

This question has been asked many times in these forums. There is no way to prevent this from a determined reverse engineer. Search for java obfuscators, which can help a little bit. The only way to prevent code stealing is to run it on your own server, which means not to use applets, but servlets/JSP. I am sure this is not ...