Bueno gente, ya solucione el problema, por las dudas, si alguien lo necesita, aca les dejo el codigo:
Código Java:
Ver originalArrayList<String>inst = new ArrayList<String>();
try {
Scanner s
= new Scanner
(System.
in); System.
out.
println("Ingrese el numero de instruccion: "); int ins = s.nextInt();
File archivo
= new File("Instrucciones.txt"); while (lectura.ready()) {
linea = lectura.readLine();
if (linea.startsWith("Instruccion "+ins)) {
do {
inst.add(linea);
linea = lectura.readLine();
} while (!linea.startsWith(";"));
}
}
for (int i = 0; i < inst.size(); i++) {
System.
out.
println(inst.
get(i
)); txt.append(inst.get(i));
txt.append("\n");
}
Asi ingresando el numero de instruccion, lo busca en txt y agrega el pedazo de texto al jtextarea.
Muchas gracias por la ayuda y saludos!