public static void main(String args[]){ BytesWritable cv = new BytesWritable(); String str1 = "1234567"; String str2 = "123450"; cv.set(str1.getBytes(), 0, str1.getBytes().length); System.out.println(new String(cv.getBytes())); cv.set(str2.getBytes(), 0, str2.getBytes().length); System.out.println(new String(cv.getBytes())); }<pre code_snippet_id="340846" snippet_file_name="blog_20140512_1_50663" name="code" class="java">output: 1234567 1234507</pre><pre code_snippet_id="340846" snippet_file_name="blog_20140512_2_6223415" name="code" class="java"> public static void main(String args[]){ BytesWritable cv = new BytesWritable(); String str1 = "1234567"; String str2 = "123450"; cv.set(str1.getBytes(), 0, str1.getBytes().length); System.out.println(new String(cv.getBytes())); cv.setCapacity(0); cv.set(str2.getBytes(), 0, str2.getBytes().length); System.out.println(new String(cv.getBytes())); } output: 1234567 123450</pre><br> <br> <pre></pre> <br>
本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/webkf/tools/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索string
, new
, system
, cv ait ey
, cv 32f
, str
, length
println
网络存储的安全问题、美篇的存储问题、程序存储问题、存储网络 问题、影楼存储问题,以便于您获取更多的相关知识。
时间: 2024-11-03 03:54:14