java字符串類型字符將兩個字節合併成一個字節

byte[] merge2BytesTo1Byte(String str){ byte[] bytes =new byte[str.length()/2]; char s,e; for(int i=0;i<str.length();i+=2){ s=str.charAt(i);//第I個索引字符 e=str.charAt(i+1);//第I+1個索引字符 if( s<='9') { if(e <=
相關文章
相關標籤/搜索