tool

Open Source .Net Reporting Tool [closed]

匿名 (未验证) 提交于 2019-12-03 01:58:03
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am looking for a reporting service/tool for visual Studio. My only restraint is my web server is off limits to me as far as installing ANYTHING. So I need something I can just include in my project. My users need to be able to export a report to PDF and without being able to use Crystal I am pretty much lost. Any ideas? 回答1: fyireporting (released under Apache License) is worth a try. The fyiReporting RDL Project is a powerful report and charting system based on Report Definition Language (RDL). Tabular, free form, matrix, charts are fully

Tool for checking unused CSS selectors?

匿名 (未验证) 提交于 2019-12-03 01:52:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I know there is an extension called Dust-Me Selectors for Firefox and also that it doesn't look at dynamic HTML generated by JavaScript. I'm looking for tool(s) that can identify all unused selectors from a stylesheet, attached to several pages, with all the JavaScript running and checking selectors? The only option I know right now for this is manually checking files and finding unused selectors :( In IDE's - I believe NetBeans provides a warning message when writing Java code, if a library is not under use. Without an IDE

How can I pretty-print JSON in a (Unix) shell script?

匿名 (未验证) 提交于 2019-12-03 01:47:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Is there a (Unix) shell script to format JSON in human-readable form? Basically, I want it to transform the following: { "foo": "lorem", "bar": "ipsum" } ... into something like this: { "foo": "lorem", "bar": "ipsum" } 回答1: With Python 2.6+ you can just do: echo '{"foo": "lorem", "bar": "ipsum"}' | python -m json.tool or, if the JSON is in a file, you can do: python -m json.tool my_json.json if the JSON is from an internet source such as an API, you can use curl http://my_url/ | python -m json.tool For convenience in all of these cases you

WADL Generation Tool

匿名 (未验证) 提交于 2019-12-03 01:46:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Is there a tool which takes a Java File what describes a REST service as a parameter and generates a wadl file out of that. 回答1: I had the same problem: was using RESTeasy and wanted to find a way to generate the WADL automatically. Did some research and came to the solution below. 1. Add this to your pom.xml : com . sun . jersey . contribs maven - wadl - plugin 1 . 17 generate generate $ { javadoc - phase } $ { project . build . outputDirectory }/ application . wadl true http : //example.com:8080/rest com.example.rs.resource com .

Creating GUI's using Java Swing with Netbeans IDE

匿名 (未验证) 提交于 2019-12-03 01:38:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: They have this very cool drag and drop thing that creates GUI on the fly. But I don't get to learn anything out from this method and I feel guilty about it. Do most of the Java programmers use this method? Because realizing the code it generates, it's quite impractical coding the GUI by hand IMO. 回答1: There's nothing wrong with using a GUI builder, as long as you understand what the tool is doing and the implications of using the tool of choice. The first thing you need to know is what the tool is doing. In this case, you should understand

Android diagnostic tool for applications

匿名 (未验证) 提交于 2019-12-03 01:36:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm looking for a reliable tool for diagnosing Android apps. I want to get the data of Battery usage and CPU usage. I would prefer to get it in real-time, like those of the built-in Developer Tools, but getting the data after few minutes of using the apps is also fine. The at&t ARO app is great, but it works only on emulators, and I have to check the apps on a real device, because I'm using the camera, with a lot of image-processing. If I could find a tool like ARO, but for real devices - it would be the best. (don't offer me apps like

SQL Formatting Tool [duplicate]

匿名 (未验证) 提交于 2019-12-03 01:32:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Possible Duplicate: SQL Formatter for SQL Management Studio So Visual Studio has a command like Format Document [Ctrl+K, Ctrl+D] is there something similar for SQL Management Studio? If not is there any other product out there, anywhere, that can help with this? We have hundreds of these we have to go through in a rather short time span, and as it we spend WAY to much time reformatting them due to poor initial formatting quality. We are using Microsoft SQL 2008. 回答1: You could try SQL Formatter (webbased). I think there was a similar

Is there a tool that generates P/Invoke signatures for arbitrary unmanaged DLL?

匿名 (未验证) 提交于 2019-12-03 01:31:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I stumbled upon a tool that generates P/Invoke signatures for Microsoft's own unmanaged DLLs: PInvoke Interop Assistant Is there a similar tool that will generate P/Invoke signatures for third-party unmanaged DLLs? Alternately, any way to feed a third-party DLL to PInvoke Interop Assistant EDIT: Actual issue I am trying to resolve 回答1: Google quickly found http://www.pinvoker.com/ Microsoft's C++/CLI compiler can also do this, if you use /clr:safe and #include the header file, it will generate p/invoke code which you can extract with e.g.

A tool like ReSharper, but for Java? [closed]

匿名 (未验证) 提交于 2019-12-03 01:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I have read a lot about ReSharper on here. It sounds like it has a lot of cool features to help the programmer out. Trouble is, I don't write C#. Is there any tool that has similar functionality to ReSharper, but for Java instead? Thank you! 回答1: Use IntelliJ IDEA an IDE from JetBrains - the creator of ReSharper. It's not "like resharper" - it's the original and resharper is like it for C#. 回答2: I believe most Java IDEs already have it - I certainly view ReSharper as the tool which brings Visual Studio up to the level of Eclipse :)

Dynamic data in Cross Tab of Birt Tool

匿名 (未验证) 提交于 2019-12-03 01:26:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: how to hide cross tab columns runtimely based on user selection in birt Tool 回答1: See the attached image... 回答2: Rows and columns can be removed from visibility in BIRT cross tabs by filtering the cross tab. To do this: Select the crosstab object in the Layout window. In the Property Editor for the cross tab, select the Filters tab. Click the Add... button to the right of the Filter by: list. In the New Filter Condition dialog, select the desired column from the Target: section and the relevant conditions in the Filter Condition: section.