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 1 year ago.
Improve this question
I'm a student, so I want to upload all my different java exercises in github. I've got a repository called "OOP" and several subfolders one of them - "Exercises". I am also on Windows using Intellij IDEA.
Is there any way that I can upload my projects into the subfolder "Exercises" by using git?
Thank you so much!
For beginners, I recommand using Github Desktop. You add your files, commit and push using the user interface.
Related
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 1 year ago.
Improve this question
I accidentally delete my database from firebase, and now, create an new database and after delete google.services, dependecies, plugins, I can't pass data to new database.
Project Android/Java
If you still have the project available, you can reinitialize it by running the command firebase init in your project folder. if your project folder is messy and potentially corrupted from any edits, It is highly recommended to start in a new folder and migrate your work from one location to the other.
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
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
In window Package Explorer I haven't any project(In workspace folder a have a few), I'm trying refresh view, but it's doesn't work, I dont know also how to open a whole project structure from this folder.
Create a new project called exactly the same name as a project you already have. Maybe there is an easier way to do it, but this works just fine if you don't have 625520 projects.
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 9 years ago.
Improve this question
What I have searched and trying to do is create and add files to a target project automatically from my program, any idea on how to do it? Because so far I can create files and change whatever is necessary but can't see a way to add those to my other project.
You should just be able to write it to the java project directory. If it looks like it didn't work, try pressing Right Click > Refresh on your java project in eclipse.
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.