Ich habe eine frage ob mir jemand dort weiter helfen kann ich weiß nicht ob das richtig ist was ich gemacht habe.
Ich bitte um Hilfe.
Also :
Es sollen die Abfragen ergänzt werden und eine adäquate Behandlung der möglicherweise auftretenden Standardexceptions an allen relevanten Stellen.
[JAVA]
import java.io.*;
public class FileCopy
{
static void copy( InputStream in, OutputStream out ) throws IOException
{
// Hier findet der eigentliche Kopiervorgang statt, diese Methode ist
//nicht Gegenstand der Betrachtung …
}
static void copyFile( String src, String dest )
{
FileInputStream fis = null;
FileOutputStream fos = null;
fis = new FileInputStream(src );
fos = new FileOutputStream( dest );
copy( fis, fos );
if ( fis != null )
if ( fos != null )
}[/JAVA]
Ich habe auch einen Lösungsansatz weiß aber nicht ob das so richtig ist oder ob noch etwas fehlt.
Meine Lösung :
if ( fis != null )
try{
fis.close();
} catch(IOException e){
; }
if ( fos != null )
ry{
fos.close();
} catch(IOException e){
; }