viewer

Java Log Viewer [closed]

青春壹個敷衍的年華 提交于 2019-11-27 10:08:30
Unfortunately, sometimes the only way to debug a program is by going through its long log files. I searched for a decent log viewer for a while now, and haven't found a real solution. The only program that seemed to be most appropriate was Chainsaw with its Socket connector but after a few short uses the program proved to be buggy and unresponsive at best. For my purposes, a log viewer should at least be able to mark log levels (for example with different colors) and perform easy filtering based on packages and free-text. Is there any other (free) log viewer? I'm looking for anything that

Viewing contents of a .jar file

一个人想着一个人 提交于 2019-11-27 10:05:32
What would be the easiest way to view classes, methods, properties, etc. inside a jar file? I'm looking for something equivalent to the very useful Lutz Roeder .NET Reflector - for Java Tom Hawtin - tackline Using the JDK, jar -tf will list the files in the jar. javap will give you more details from a particular class file. PhiLho I usually open them with 7-Zip... It allows at least to see packages and classes and resources. Should I need to see methods or fields, I would use Jad but of course, it is better to rely on (good) JavaDoc... Now, somewhere on SO was mentioned some Eclipse plug-ins,

Is there a tool other than ij to look into a local derby database (folder)?

柔情痞子 提交于 2019-11-27 03:53:00
问题 I'm using Derby ij to look into my local Apache Derby database. It's just a folder and I connect to it like this: connect 'jdbc:derby:C:\Users\Torben\MyDatabase' USER 'me' PASSWORD 'secret'; It works, but I don't really like to look into the database in the console. Is there another tool for this? The best would be something with a GUI. 回答1: Squirrel SQL can connect to an Apache Derby database. Getting Started using the SQuirreL SQL Client 回答2: I simply use NetBeans IDE (Services -> Databases

Reading a .pdb file

我只是一个虾纸丫 提交于 2019-11-26 19:36:35
问题 I have a lot of files in .pdb format, some of them downloaded, but until now I can't use or read what's inside, so I'm looking for how to read and view the .pdb file format from MS Windows XP. Any of you that may know how to open it? 回答1: If you mean PDB as in a "program database" that the debugger uses: PDB files contain data about a file such as an EXE or DLL that is used to aid in debugging. There are public interfaces that allow you to extract data from the file. See examples here: http:/

Java Log Viewer [closed]

穿精又带淫゛_ 提交于 2019-11-26 17:55:34
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Unfortunately, sometimes the only way to debug a program is by going through its long log files. I searched for a decent log viewer for a while now, and haven't found a real solution. The only program that seemed to be most appropriate was Chainsaw with its Socket connector but after a few short uses the program

android set image as contact icon/wallpaper

元气小坏坏 提交于 2019-11-26 17:06:19
问题 I have written my own ImageViewer and now I want to have Set as functionality like in Android native ImageViewer. I now it is possible since Facebook has it. I've attached a screenshot to make myself more clear. P.S. I want to give a more detailed explanation of what goes wrong. After I choose "Contact icon" in the menu the list of my contacts appears. When I choose a contact the application force closes. If I choose "Home/Lock screen wallpaper" it opens my phone's gallery. Here is my code

Viewing contents of a .jar file

我只是一个虾纸丫 提交于 2019-11-26 15:00:21
问题 What would be the easiest way to view classes, methods, properties, etc. inside a jar file? I'm looking for something equivalent to the very useful Lutz Roeder .NET Reflector - for Java 回答1: Using the JDK, jar -tf will list the files in the jar. javap will give you more details from a particular class file. 回答2: I usually open them with 7-Zip... It allows at least to see packages and classes and resources. Should I need to see methods or fields, I would use Jad but of course, it is better to