Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
554 views
in Technique[技术] by (71.8m points)

java - json parse error on line 1: < html > < body >

i dont know why the code is not working, it should encode to json ? when i call this PHP code link from app in Android studio its not working and display error message ,it display this code :

< html > < body > < script type = "text/javascript"
src = "/aes.js" > < /script><script>function toNumbers(d){var e=[];d.replace(/ (..) / g,
function(d) {
    e.push(parseInt(d, 16))
});
return e
}
function toHex() {
for (var d = [], d = 1 == arguments.length && arguments[0].constructor == Array ? arguments[0] : arguments, e = "", f = 0; f < d.length; f++) e += (16 > d[f] ? "0" : "") + d[f].toString(16);
return e.toLowerCase()
}
var a = toNumbers("f655ba9d09a112d4968c63579db590b4"),
b = toNumbers("98344c2eee86c3994890592585b49f80"),
c = toNumbers("fafd97787619720460a70e34d00aedb4");
document.cookie = "__test=" + toHex(slowAES.decrypt(c, 2, a, b)) + "; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/";
location.href = "http://gmarket.byethost5.com/json_getS.php?i=2"; 

also in jsonlint website display same the above when test the php URL and return this error :

Parse error on line 1: < html > < body > < ^ Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '[', got 'undefined')

this php link :http://gmarket.byethost5.com/json_getS.php

this php code i used:

<?php  
$host= "sql201.byethost5.com";
$user = "xxxxxxx";  
$pass = "xxxxxxx";  
$db = "xxxxxxx";  

$sql="select * from customer";

$con = mysqli_connect($host,$user,$pass,$db);
$result= mysqli_query($con,$sql);

$response = array();

while ($row = mysqli_fetch_array($result))
{

 array_push($response,array("name"=>$row[0],"phone"=>$row[1] ));
}
echo json_encode(array("customers"=>$response));

mysqli_close($con);
?> 
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your Json is correct, the issue is your returning HTML, you're not telling the browser that the content is Json.

Use

header('Content-Type: application/json');
echo json_encode($response);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...