,在java中,数据库中存储的ip是varbinary类型,读出来不能正常显示,如何读出并正常显示
发布网友
发布时间:2022-04-07 23:07
我来回答
共3个回答
热心网友
时间:2022-04-08 00:36
数据库中的varbinary 类型 对应到java里面是byte类型, 直接打印出来是内存地址。
所以 new一个String 把拿到的对象放进去。即首先使用byte[]进行接收,接收完成以后使用
new String((byte[]) xxx )获取为String
热心网友
时间:2022-04-08 01:54
InetAddress inetaddress =InetAddress.getByAddress(bytesIp);
String ip = inetaddress.getHostName();
这么来就行,bytesIp就是数据库读出来的byte数组。
热心网友
时间:2022-04-08 03:29
binary ,按InputStream处理 或者 按byte[]处理
一个相片的例子
InputStream in = rs.getBinaryStream("photo");
ServletOutputStream op = response.getOutputStream();
int len;
byte[] buf=new byte[1024];
while((len= in.read(buf))!=-1) {
op.write(buf, 0, len);
}
op.close();
in.close();