标准 Java 的 ACRA 是什么?
Android 有一个非常好的崩溃报告工具,名为 ACRA (http://code.google.com/p /阿克拉/)。标准(而不是移动)Java 有类似的库吗?
There is a very good crash reporting thing for Android called ACRA (http://code.google.com/p/acra/). Are there any similar libraries for standard (as opposed to mobile) Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从来没有遇到过。但我以前用过ACRA。它将数据上传到谷歌电子表格的方式非常简单。您可以在 G-Docs 上使用您想要的任何列创建一个表单,然后在代码中根据基本 URL + 参数创建 HTTP 请求
以下是如何构建 url 字符串以上传到表单:
在此示例中myReq 是一个 HttpRequest 对象。不幸的是,我找不到我从中获取此内容的页面。但是,如果您搜索诸如“按语法输入谷歌表单程序”或类似内容,您可能会发现一些人发布了更多相关内容。如果您愿意,可以添加更多或更少的列,只需保留 url 增量的“entry.#”部分即可。
I've never run across one. But I have used ACRA before. The way that it uploads its data to google spreadsheet is pretty straight forward. You can just create a form on your G-Docs with whatever columns you want and then in your code create an HTTP request out of the base URL + parameters
Here is how you can build the url string to upload to a form:
In this example myReq is an HttpRequest object. Unfortunately I can't find the page where I picked this up from. But if you search around for things like "input to google form pro grammatically" or similar you can probably find a few people posting more about it. You can add more or fewer columns if you like just keep the "entry.#" portion of the url incremental.