本文整理汇总了Java中com.isode.stroke.base.ByteArray.getData方法的典型用法代码示例。如果您正苦于以下问题:Java ByteArray.getData方法的具体用法?Java ByteArray.getData怎么用?Java ByteArray.getData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.isode.stroke.base.ByteArray
的用法示例。
在下文中一共展示了ByteArray.getData方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: insideQuotes
import com.isode.stroke.base.ByteArray; //导入方法依赖的package包/类
static boolean insideQuotes(final ByteArray v) {
if (v.isEmpty()) {
return false;
}
else if (v.getSize() == 1) {
return v.getData()[0] == '"';
}
else if (v.getData()[0] == '"') {
return v.getData()[v.getSize() - 1] != '"';
}
else {
return false;
}
}
示例2: stripQuotes
import com.isode.stroke.base.ByteArray; //导入方法依赖的package包/类
static ByteArray stripQuotes(final ByteArray v) {
String s = new String(v.getData()); // possibly with a charset
int size = v.getSize();
int i = 0;
if(s.charAt(0) == '"') {
i++;
size--;
}
if(s.charAt(v.getSize() - 1) == '"') {
size--;
}
String data = s.substring(i, size+1);
return new ByteArray(data);
}
示例3: hexify
import com.isode.stroke.base.ByteArray; //导入方法依赖的package包/类
public static String hexify(ByteArray data) {
StringBuilder result = new StringBuilder();
for (byte b : data.getData()) {
result.append(hexify(b));
}
return result.toString();
}
示例4: getSubArray
import com.isode.stroke.base.ByteArray; //导入方法依赖的package包/类
/**
* Gets the sub {@link ByteArray} consisting of the first n bytes of
* a given {@link ByteArray}
* @param array A {@link ByteArray} should not be {@code null} and should
* be at least n characters long.
* @param n the number of bytes of the {@link ByteArray} to return as a new
* {@link ByteArray}
* @return The first n characters of the given {@link ByteArray} as a new
* {@link ByteArray}. Will not be {@code null}
*/
private ByteArray getSubArray(ByteArray array,int n) {
byte[] arrayData = array.getData();
byte[] newArrayData = Arrays.copyOfRange(arrayData, 0, n);
return new ByteArray(newArrayData);
}