Skip to content

Commit cf3214f

Browse files
authored
covers some of the functions.
- class loaders - file access - file stream/reader class - native libraries - system properties - accessing arbitrary fields and methods - and scripting engine
1 parent 698b8a5 commit cf3214f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

java.txt

+20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
FileInputStream
2+
FileOutputStream
3+
FileReader
4+
FileWriter
5+
RandomAccessFile
26
ObjectInputStream
37
ObjectOutputStream
48
PipedInputStream
@@ -10,3 +14,19 @@ JarOutputStream
1014
GZIPInputStream
1115
GZIPOutputStream
1216
ZipFile
17+
lang.ClassLoader.defineClass
18+
net.URL.ClassLoader
19+
System.setProperty
20+
System.getProperties
21+
System.getProperty
22+
System.load
23+
System.loadLibrary
24+
awt.Robot.keyPress/keyRelease
25+
awt.Robot.mouseMove/mousePress/mouseRelease
26+
beans.Instrospector.getBeanInfo
27+
lang.Class.getDeclaredMethod
28+
lang.Class.getDeclaredField
29+
lang.Method.reflection.invoke
30+
lang.Method.field.set
31+
lang.Method.field.get
32+
javax.script.ScriptEngine.eval

0 commit comments

Comments
 (0)