私はJavaで新しい....ファイル入力ストリームを使用してテキストファイルを読み込もうとしています。テキストを1行ずつ読んで文字列として設定します..今、文字列をバイトに変換したいと思います。しかし、数値形式の例外が発生しています..この問題の解決を手伝ってください。
FileInputStream fstream = new FileInputStream("C:/Users/data.txt");
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
byte[] bytes = null;
String str;
int i=0;
while ((str = br.readLine()) != null)
{
bytes[i] = Byte.parseByte(str,16);
i++;
}
in.close();