标准 Java 的 ACRA 是什么?

发布于 2024-12-21 04:33:39 字数 151 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事风中埋 2024-12-28 04:33:39

我从来没有遇到过。但我以前用过ACRA。它将数据上传到谷歌电子表格的方式非常简单。您可以在 G-Docs 上使用您想要的任何列创建一个表单,然后在代码中根据基本 URL + 参数创建 HTTP 请求

以下是如何构建 url 字符串以上传到表单:

String url = "https://spreadsheets.google.com/formResponse?formkey="+ YOUR_KEY+
                         "&entry.0.single="+URLEncoder.encode(val1)+
                         "&entry.1.single="+URLEncoder.encode(val2)+
                         "&entry.2.single="+URLEncoder.encode(val3)+
                         "&entry.3.single="+URLEncoder.encode(val4);
myReq.sendPost(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:

String url = "https://spreadsheets.google.com/formResponse?formkey="+ YOUR_KEY+
                         "&entry.0.single="+URLEncoder.encode(val1)+
                         "&entry.1.single="+URLEncoder.encode(val2)+
                         "&entry.2.single="+URLEncoder.encode(val3)+
                         "&entry.3.single="+URLEncoder.encode(val4);
myReq.sendPost(url, "");

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文