我一直在尝试使用The Guardian的API解析android应用程序的JSON,但在将日期格式化为更好看的格式时遇到了麻烦。 到目前为止,这是我的适配器的外观: 公共类ArticleAdapter扩展了ArrayAdapter {
public ArticleAdapter(MainActivity context, ArrayList<Article> article){
super(context,0, article);
}
/**
* Return the formatted date string
*/
private String formatDate(String dateObject) throws ParseException {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
return formatter.parse(dateObject).toString();
}
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
View listItemView = convertView;
if (listItemView == null) {
listItemView = LayoutInflater.from(getContext()).inflate(R.layout.article_list_item, parent, false);
}
Article currentArticle = getItem(position);
TextView header = (TextView) listItemView.findViewById(R.id.header);
header.setText(currentArticle.getHeader());
//Creates the date view and object and passing it through the function to format properly
TextView date = (TextView) listItemView.findViewById(R.id.date);
Date DateObject = new Date(currentArticle.getDate());
try {
date.setText(formatDate(currentArticle.getDate()));
} catch (ParseException e) {
e.printStackTrace();
}
return listItemView;
}
}
我尝试过使用String作为对象或Date对象作为formatDate()的输入,以及许多不同的格式化技术-
使用输入和输出日期格式 使用.formatter而不是.parse 我从类似的问题中发现的其他几种解决方案,不能完全记住它们。
应用程序始终以“ IllegalArgumentException
”崩溃。通过足够的反复试验,我能够确定失败源于此。
注意:getDate()
方法返回一个字符串
JSON解析的小例子:
[{"id":"technology/2018/jul/05/privacy-policies-facebook-amazon-google-not-gdpr-compliant","type":"article","sectionId":"technology","sectionName":"Technology","webPublicationDate":"2018-07-04T23:01:14Z","webTitle":"Privacy policies of tech giants 'still not GDPR-compliant'","webUrl":"https://www.theguardian.com/technology/2018/jul/05/privacy-policies-facebook-amazon-google-not-gdpr-compliant","apiUrl":"https://content.guardianapis.com/technology/2018/jul/05/privacy-policies-facebook-amazon-google-not-gdpr-compliant","isHosted":false,"pillarId":"pillar/news","pillarName":"News"}
我使用的日期是 webPublicationDate
这是我第一次发布问题,希望我不要错过任何描述。感谢任何方向,因为我有点迷失了atm。
答案 0 :(得分:0)
好吧,经过更多的工作,我能够找出导致故障的原因:
Date DateObject = new Date(currentArticle.getDate()); //currentArticle.getDate() is a string
我对此行发表评论后,一切都按预期工作。我已修复它,但我仍然不确定为什么,有人可以向我解释一下吗?
谢谢!
答案 1 :(得分:0)
原因是日期“ webPublicationDate”:“ 2018-07-04T23:01:14Z”已经在UTC时区中格式化,因此您需要先使用SimpleDateFormat对其进行解构
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'kk:mm:ss'Z'");
Date myDate = null;
try {
myDate = dateFormat.parse(currentArticle.getmDate());
} catch (ParseException e) {
e.printStackTrace();
}
// Define a new SimpleDateFormat object to reconstruct the date into the desired format.
DateFormat newDateFormat = DateFormat.getDateInstance(DateFormat.MEDIUM);
// Convert the Date object into a String.
String formattedDate = newDateFormat.format(myDate);