String HexToBinary(String Hex) · { · int i = Integer.parseInt(Hex); · String Bin = Integer.toBinaryString(i); · return Bin; · }.
確定! 回上一頁