G
Gast2
Gast
hallo zusammen,
was ist daran falsch???
EDIT: Ich wollte ein Image Objekt als jpg speichern
was ist daran falsch???
Code:
public void bildSpeichern(Image img,String bildname)
{
FileOutputStream outputstream;
try {
outputstream = new FileOutputStream("bilder/"+bildname);
ObjectOutputStream os = new ObjectOutputStream(outputstream);
os.writeObject(img);
os.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
EDIT: Ich wollte ein Image Objekt als jpg speichern