private static void saveCallers(String fName, RadioShow r) throws IOException {
//TODO write the code to save the callers to a file
try
{
FileOutputStream outStream = new FileOutputStream("C:\\Desktop\\text1.txt");
ObjectOutputStream out = new ObjectOutputStream(outStream);
out.writeObject(r);
out.close();
}
catch(Exception e)
{
System.out.println("something went wrong here! : " + e);
}
}
Это дает мне исключение URLClassLoaderException, поэтому я предполагаю, что я даю ему неправильный формат?Но я не могу найти правильный способ сделать это.
Спасибо