首先你要确定你从LDAP里读出来的是什么编码格式,然后再网上找找相应的编码格式如果转化成图片。
while(time>=0){hour=time/3600
minute=(time-hour*3600)/60
seconds=time-hour*3600-minute*60
jl1.setText(hour+"时")
jl2.setText(minute+"分")
jl3.setText(seconds+"秒")
try {
Thread.sleep(1000)
} catch (InterruptedException e) {
e.printStackTrace()
}
time--
}
你可以看一下这个网站,http://wiki.servicenow.com/index.php?title=LDAP_Error_Codes
这些列出的是错误的具体信息
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)