2 回答
TA贡献1890条经验 获得超9个赞
你在正确的轨道上。只需删除尾随;,然后使用课程中为您提供的方法Integer。
while ( fileReader.hasNextLine() ) {
String line = fileReader.nextLine();
if ( line.startsWith( "0x" ) ) {
line = line.replace( ";", "" );
List<Byte> wrapped = Arrays
.asList( line.split( " " ) )
.stream()
// convert all the string representations to their Int value
.map( Integer::decode )
// convert all the Integer values to their byte value
.map( Integer::byteValue )
.collect( Collectors.toList() );
// if you're OK with changing commands to a List<Byte[]>, you can skip this step
byte[] toAdd = new byte[wrapped.size()];
for ( int i = 0; i < toAdd.length; i++ ) {
toAdd[i] = wrapped.get( i );
}
commands.add( toAdd );
}
}
TA贡献1770条经验 获得超3个赞
只是想我会指出,如果你稍微放松一下规范,你基本上可以在一行中做到这一点splitAsStream。
List<Integer> out = Pattern.compile( "[\\s;]+" ).splitAsStream( line )
.map( Integer::decode ).collect( Collectors.toList() );
我在这里使用整数,Integer::decode因为会在 OP 的第一个输入Byte::decode上引发错误。0x80如果你真的需要一个原语数组,你就必须做更多的工作,但实际上装箱的数字通常会做。
这是整个代码:
public class ScannerStream {
static String testVector = "//create applet instance\n" +
"0x80 0xB8 0x00 0x00 0x0c 0x0a 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0xc 0x01 0x01 0x00 0x7F;";
public static void main( String[] args ) {
List<List<Integer>> commands = new ArrayList<>();
Scanner fileReader = new Scanner( new StringReader( testVector ) );
while( fileReader.hasNextLine() ) {
String line = fileReader.nextLine();
if( line.startsWith( "0x" ) ) {
List<Integer> out = Pattern.compile( "[\\s;]+" ).splitAsStream( line )
.map( Integer::decode ).collect( Collectors.toList() );
System.out.println( out );
commands.add( out );
}
}
System.out.println( commands );
}
}
添加回答
举报