Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have recently join a team in an organization. they have assign me a project. now I have the project source code build in GWT and Java. I have imported the project in my eclipse. Now I can not figure out how to start looking into it as it contains so many packages and java files.
Firstly you should understand what your code does in terms of business cases, and then high-level analyze it, without spending tons of time trying to figure out why each line of code is written, and when you will get it, life will become easier
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Does anyone know how to find some variables not used in Netbeans, like when I create the variable String a and I hover over that variable I get the info Variable "a" is not used?
I want to jump into that variable because in my servlet there are too many lines.
I'm not aware of any functionality that comes out of the box. But some third party tools offer you what you are searching for:
PMD (especially this rule). There's also a NetBeans plugin although I don't know if it works with the newest version of NetBeans.
SpotBugs (search for unused in the documentation to find the rules)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm trying to create an android application to scan other applications for viruses, or malicious code etc. But to begin with, I'm trying to figure out how existing anti-virus scanning systems operate.
I don't think its rooting, because there are a lot of anti viruses that don't need rooting. If I have to guess, I would say it scans the files for signature. And they access the files similar to how file explorers work. Someone more knowledgeable can correct me.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have to make app using java technology and it should work same as drop box is working. So can you suggest how to start or which jar is required for it?
From the question it looks like you are new to Java. So your best bet would be to use an existing library to do the sync. Java is often not considered the ideal choice for file intensive tasks due to performance issues.
eg:
http://jfilesync.sourceforge.net/
Also see this: https://stackoverflow.com/questions/2283958/java-folder-synchronisation-class-library
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Java has various project types and the worse thing is that I'm a newbie in Java.
Netflix hosts a open-source project on GitHub: github.com/Netflix/netflix-graph/.
I want to know which kind/type of project it is ? Console, EE, or ....?
Also, how can such projects be created or any reference to better analogy of various project types ?
It is a library which you can include in your Java project to work with graphs. As such, it is similar in "type" as a JSON parser or an HTTP client library.
It is not an application that you run by itself.
It does not seem to have any special dependencies, so that you can probably use it in all kinds of Java applications, most likely even on Android.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have created a java based project using Netbeans as an IDE. Now I want to obfuscate my project. How can this be done?
You need to use a source obfuscator.
I have used Zelix Klassmaster in the past and it is pretty good.
I have used RetroGuard and i was really happy with it. The thing I really liked was the ability to use it from my build file, so that I could deploy the project directly obfuscated.
Take a look at proguard - you can integrate it into ANT.