Я пишу программу для BlackBerry в Java мне.
Могу ли я написать исключение java, записанное в формате json?Как я могу это сделать?Какие вещи я должен рассмотреть?Спасибо!
Будет ли это так ...
catch (IOException e) {
String IOExceptionMsg =
"description:Warn exception: OSError. Exc_type: :Caught IOException:" +
e.toString() + ",filename: " + imageName;
out.write(IOExceptionMsg.getBytes())
}
catch (Exception e) {
String Exception =
"description: Unknown Error:Caught Exception:" + e.toString() +
",filename:" + imageName;
out.write(Exception.getBytes());
out.flush();
}
У меня есть такой формат json ... Как их разместить?
`public String toJSON()
{
final String
IMAGENAME = imageName,
description = "",
filename = imageName;
JSONObject outer = new JSONObject();
JSONObject inner = new JSONObject();
try {
outer.put(IMAGENAME, inner);
// Values are added to the JSONObject in pairs, label then value
inner.put(description, description);
inner.put(filename, imageName);
} catch (JSONException ex) {
ex.printStackTrace();
}
return outer.toString();
}`