我可以从我的arraylist
访问和打印字符串list.get(0).getLastName();
但我无法访问char:
list.get(0).getLastName().charAt(0);
即使我将list.get(0).getLastName()
设置为等于str之类的变量,我也可以打印str,但是如果我尝试str.charAt(0)
,它就永远不会返回任何我可以打印或使用的内容。
任何帮助表示感谢。
答案 0 :(得分:5)
我经常看到这个问题与不期望的字符有关:
也许它以空格或其他特殊字符开头?
if ($rs === TRUE) {
$row_cnt = $result->num_rows;
if($row_cnt == 1){
$result["cpu"] = $value1;#$result is predefined in the script.
$result["tempvalue"] = $value2;
}}
else{
echo "did not find";
# $response["error"] = "error";
$result["error"] = "error";
}
json_encode($result);
使用unicode chart查找角色。