first commit

This commit is contained in:
Boris
2024-01-15 20:14:10 +00:00
commit 8c81ee28b7
3106 changed files with 474415 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
import java.io.*;
import java.net.URL;
/**
* This is a little demo showing how to read text files. It will find files
* that are situated anywhere in the classpath.
*
* Currently, two demo methods are available. Both simply print a text file to the
* terminal. One returns exceptions in case of a problem, the other prints out
* error messages.
*
* @author Michael K<>lling
* @version 1.0 (19. Feb 2002)
*/
public class FileReader
{
/**
* Create a file reader
*/
public FileReader()
{
// nothing to do...
}
/**
* Show the contents of the file 'fileName' on standard out (the text terminal).
*
* @param fileName The name of the file to show
* @throws IOException if the file could not be opened
*/
public void showFile(String fileName)
throws IOException
{
InputStream fstream = openFile(fileName);
// wrap the stream into an InputStreamReader, so that we read characters
// rather than bytes (important for non-ascii characters); then wrap it into
// a BufferedReader, so that we can read lines, rather than single characters
BufferedReader in = new BufferedReader(new InputStreamReader(fstream));
// okay, we're ready to go...
System.out.println("File: " + fileName);
String line = in.readLine();
while(line != null) {
System.out.println(line);
line = in.readLine();
}
System.out.println("<end of file>");
}
/**
* Same as 'showfile', but don't throw exceptions. If an error occurs,
* write an error message to the terminal.
*
* @param fileName The name of the file to show
*/
public void checkedShowFile(String fileName)
{
try {
showFile(fileName);
}
catch(IOException exc) {
System.out.println("There was a problem showing this file.");
System.out.println("The error encountered is:");
System.out.println(exc);
}
}
/**
* Open a text file and return a stream to read from that file.
* The file can reside anywhere in the classpath.
*
* @param fileName The name of the file to open
* @return An open stream to read from the file
* @throws IOException if the file could not be opened
*/
public InputStream openFile(String fileName)
throws IOException
{
if(fileName == null)
throw new IOException("Cannot open file - filename was null.");
URL url = getClass().getClassLoader().getResource(fileName);
if(url == null)
throw new IOException("File not found: " + fileName);
return url.openStream();
}
}

View File

@@ -0,0 +1,9 @@
This is a small demo showing how to access a file in a safe way.
Especially: access to the file does not depend on the current directory,
but files will be found anywhere in the classpath. So text files placed
inside the project directory wll be found.
A file for testing is include in this project. It is called "test.txt".
(You can also access this file - "README.TXT".)
-mik-, Feb 2002

View File

@@ -0,0 +1,14 @@
#BlueJ package file
package.editor.height=300
package.editor.width=420
package.editor.x=40
package.editor.y=62
package.numDependencies=0
package.numTargets=1
target1.height=50
target1.modifiers=0
target1.name=FileReader
target1.type=ClassTarget
target1.width=90
target1.x=140
target1.y=70

View File

@@ -0,0 +1 @@
This is a plain text file.