js 怎么把blob类型转化为string
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 怎么把blob类型转化为string相关的知识,希望对你有一定的参考价值。
参考技术A 1、在类中定义大字段:Java代码
public class informAffiche
private Blob content;
public void setcontent(Blob S_content)
content=S_content;
public Blob getcontent()
return content;
2、数据库中读取大字段内容并set进去:
Java代码
while(rs.next())
s.setcontent(rs.getBlob("content"));
3、在页面得到
Java代码
if (list.size()>0)
s=(informAffiche)list.get(0);
Blob blob= s.getcontent();
if(blob == null || blob.length()==0)
content = "";
else
content = new String(blob.getBytes((long)1, (int)blob.length()));
System.out.println("content---->"+content);
4、页面输出:
<td><%=content %></td>本回答被提问者采纳 参考技术B
function decodeUtf8(bytes)
var encoded = "";
for (var i = 0; i < bytes.length; i++)
encoded += '%' + bytes[i].toString(16);
return decodeURIComponent(encoded);
以上是关于js 怎么把blob类型转化为string的主要内容,如果未能解决你的问题,请参考以下文章