我希望这个选择jdateChooser形式的日期转换成字符串并显示init jlable
@RequestMapping(
method = RequestMethod.POST,
value = { "/{version}/protobuf" },
consumes = { MediaType.APPLICATION_OCTET_STREAM_VALUE, "application/x-protobuf" },
produces = { MediaType.APPLICATION_OCTET_STREAM_VALUE, "application/x-protobuf" }
)
@ResponseBody
答案 0 :(得分:1)
使用toString()
方法,它将对象转换为String,执行此操作jLabel16.setText(date.toString());
以显示标签中对象的内容。