以下のコードと readData 関数で同様に複数のマーカーエラーが発生し続けます..
public static void writeData(OutputStream os) throws IOException
{
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(os));
for (int x = 0; x < 10; x++)
{
int random = (int)(Math.random() % 100) + 1;
out.writeChars("Random value = " + random);
}
out.flush();
out.close();
}
複数のマーカーは、複数のエラーがあることを意味します...しかし、問題を解決できません...