java.io.File
: Encapsulates a file on a drive.
java.net.URL
: Encapsulates a Uniform Resource Locator (URL), which could include internet addresses.File(String pathname);
File f = new File("e:/myFile.txt");
java.awt.FileDialog
: Opens a "Open file" box with a directory tree in it. This stays open until the user chooses a file or cancels.
getDirectory()
and getFile()
methods to get the directory and filename.
import java.awt.*;
import java.io.*;
FileDialog fd = new FileDialog(new Frame());
fd.setVisible(true);
File f = null;
if((fd.getDirectory() != null)||
(fd.getFile() != null)) {
f = new File(fd.getDirectory() + fd.getFile());
}
java.lang.Class
object associated with it. This represents the class loaded into the JVM.
java.net.URL
object to do this.
Class thisClass = getClass();
URL url = thisClass.getResource("myFile.txt");
getPath()
to return the file path as a String for the File constructor.
exists()
, canRead()
and canWrite()
:
Test whether the file exists and can be read or written to.
createNewFile()
and createTempFile()
:
Create a new file, and create a new file in "temp" or "tmp".
delete()
and deleteOnExit()
:
Delete the file (if permissions are correct). Delete when JVM shutsdown.
isDirectory()
and listFiles()
:
Checks whether the File is a directory, and returns an array of Files representing the files in the directory. Can use a FilenameFilter
object to limit the returned Files.
8 bits (e.g. 00000000) = 1 byte
00000000 00000000 00000000 00000000 = int 0
00000000 00000000 00000000 00000001 = int 1
00000000 00000000 00000000 00000010 = int 2
00000000 00000000 00000000 00000100 = int 4
00000000 00000000 00000000 00110001 = int 49
00000000 00000000 00000000 01000001 = int 65
00000000 00000000 00000000 11111111 = int 255
00000000 01000001 = code 65 = char "A"
00000000 01100001 = code 97 = char "a"
char back = 8; // Try 7, "bell" as well.
System.out.println("hello" + back + "world");
System.out.println("hello\nworld");
00000000 00110001 = code 49 = char "1"
Seems much smaller - it only uses 2 bytes to store the character "1", whereas storing the int 1 takes 4 bytes.
00000000 00110001
= code 49 = char "1"
00000000 00110001 00000000 00110010
= code 49, 50 = char "1" "2"
00000000 00110001 00000000 00110010 00000000
00110111 = code 49, 50, 55 = char "1" "2" "7"
00000000 00000000 00000000 01111111 = int 127
File f = new File("e:/myFile.txt");