我已经尝试了很多搜索来找到一种在字符串中搜索字节码的方法。这是一个例子:
String stringThatHasBytes = "hello world hello world[B@9304b1";
If stringThatHasBytes . Does have bytes {
return true or false
}
有没有一种方法可以在字符串中搜索字节?
简而言之,你不能这样做。因为每次打印出一个字节时,它的打印都会发生变化。打印出字节不会打印实际字节,如果您正在寻找字节的精确比较,它是没有意义的。
但是,如果您只查找字符串中的任何字节打印,只需控制字符串中的[B@
s 并返回 true。
String stringThatHasBytes = "hello world hello world[B@9304b1";
if (stringThatHasBytes.indexOf("[B@") >= 0)
return true;
} else return false;
编辑:
如果您需要以有意义的方式打印字节的方法,您应该将字节转换为一些有意义的文本,例如:
public static String convertByteArrayToHexString(byte[] b) {
if (b != null) {
StringBuilder s = new StringBuilder(2 * b.length);
for (int i = 0; i < b.length; ++i) {
final String t = Integer.toHexString(b[i]);
final int l = t.length();
if (l > 2) {
s.append(t.substring(l - 2));
} else {
if (l == 1) {
s.append("0");
}
s.append(t);
}
}
return s.toString();
} else {
return "";
}
}
看看这是否有帮助
byte[] myByteArray = new byte[5];
myByteArray[0] = 'a';
myByteArray[1] = 'b';
myByteArray[2] = 'c';
myByteArray[3] = 'd';
myByteArray[4] = 'e';
for (byte x : myByteArray)
System.out.println(x);
String myString = "abcde";
System.out.println(myString.equals(new String(myByteArray)));
包含对您来说太简单的答案吗?
boolean hasBytes = str.contains("[B@");
If so let me know I'll show you some good regex! but that should be sufficient.