How to include libraries in Java N-IDE | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

How to include libraries in Java N-IDE

i am making android project and how can i include libraries like appcompat

4th Oct 2018, 11:23 AM
Naola
Naola - avatar
2 Answers
+ 5
You can add them without an ide: javac -classpath external.jar myClass.java EDIT: If your main class is in a package package com.mycompany; public class myClass { ... ... then you'll need javac -classpath external.jar com/mycompany/myClass.java and to run java -classpath external.jar com.mycompany.myClass https://stackoverflow.com/questions/5112607/how-to-include-libraries-in-java-without-using-an-ide https://stackoverflow.com/questions/4732892/how-to-add-reference-jar-files-in-your-project-when-you-dont-have-an-ide
9th Oct 2018, 9:26 AM
Willem Roos
+ 1
Hi flash I don't think java n ide is the best Unless it will be hard coding. So I suggest u to use android studio(https://d.android.com/sdk) This will be much simpler for complex android project and even for importing libraries simply with gradle system
15th Jun 2020, 2:09 PM
Ananiya Jemberu
Ananiya Jemberu - avatar