NetBeans refers to both a platform framework for Java desktop applications, and an integrated development environment (IDE) for developing with Java and other languages.
0
votes
2answers
30 views
How to import a class from a package in a different folder?
I am new to java. This is a basic question about packages. I have a small java project named "stacklist.java" in Netbeans IDE. It's package name is stacklist. And it has 4 different classes. One of ...
0
votes
1answer
38 views
Running Maven project in Netbeans
Is there any way I can run Maven project in Netbeans not in a Maven way? Netbeans do it automatically but I just want to run program normally, as a typical Java project (to save time). I want output ...
1
vote
1answer
63 views
Warning when i'm trying to install Android on NetBeans 7.2 Beta
I'm trying to Use android with Netbeans , but every time i try to do it , it gave me warning message Like this:
Exactly what i do :
Tools -> Plugins ->Settings tab ->press Add button and fill ...
0
votes
0answers
59 views
Creating a Mobile Application with User Authentication before login
I am creating a mobile phone application for Android.
I have a website with approx. 5000 users that each has their own account and personal information such as contact details and time sheets. How ...
0
votes
4answers
54 views
Driver to connect databse to java
I have a problem
I want to get data from a graphical interface and save them on a SQL file on Netbeans
and then import from SQL to fill the graphical interface.
I have my database ready but the ...
-2
votes
0answers
75 views
Adding Derby database to Java project in Netbeans 7.3 [closed]
I'm working on a GUI project in Java using Netbeans 7.3
It's basically a small application using local Derby database.
Project was created as "New Project -> Java -> Java Application" and it currently ...
0
votes
1answer
38 views
an ide for php to access remote server in ubuntu
i have recently start working in ubuntu and i have to work on remote servers. so I have to work on the vi editor , which is good but then i decided to work on the ide , so i installed netbeans , now i ...
0
votes
0answers
35 views
JCalendar Build
Using JCalendar, I have entered the following code from this site:
private void jCalendar2PropertyChange(java.beans.PropertyChangeEvent evt)
{
JCalendar jc = new JCalendar();
...
0
votes
1answer
32 views
Autohotkey - Duplicate Selected Lines Down
i want to simulate a Netbeans feature. I want to be able to duplicate the selected LINES. (not the selected text).
I have written the following AutoHotkey macro
DuplicateDown()
{
SetKeyDelay, -1
...
1
vote
1answer
29 views
neteans hide packages from view
I wonder if it is possible, to hide some packages (or directories) from the netbeans package view window.
Currently, I am working on a project, which has many projects, but I only know some of them.
...
0
votes
3answers
30 views
Java WAR deployment issue
I've built a basic Java Web Project using Netbeaans, which uses Maven.
The issue is, in my 'dependencies' I see 'javaee-web-api-6.0.jar'. However, when I build the project, in the .war file I don't ...
0
votes
0answers
18 views
Can you customize the color of the query-results-window in Netbeans 7.3?
Using netbeans with the dark-nimbus theme gives a reasonable dark appearance for most of the IDE, although there are large areas of unusableness (like the Wizard window). However I find it reduces my ...
0
votes
0answers
41 views
Configuring NetBeans 7.3 JPQL editor?
I have a RESTful service that builds and runs fine. However, when I try to use the JPQL editor, it gives the error:
java.lang.Exception: You need to add your persistence provider library either to ...
1
vote
1answer
49 views
Exception Adding elements to a JList
I'm writing code to retrieve data from a MySQL database.
I want to add one column of the query to a JList.
This is my code:
try {
ArrayList<String> names = new ArrayList();
...
0
votes
1answer
26 views
Export runtime value of a variable in NetBeans
I'm using NetBeans for Java programming and I want to export the value of a variable into a file, since I can't do it by copy and paste like a big array list. Is there any command to do this at ...
1
vote
1answer
29 views
How to automatically improve Debugging in Symfony2
I tried debugging with Symfony2 before and dealing with the cache is a big pain in the head
I'm debugging with Netbeans and XDebug, is there a way to AUTOMATICALLY disable the cache and Debug in a ...
-3
votes
1answer
24 views
Does anyone know Accurev plugin for Netbeans?
Does anyone know Accurev plugin for Netbeans and also m2e SCM connector for Accurev in eclipse juno?
0
votes
0answers
9 views
Oracle Java equivalent/ solution for setSurviveFocusChange
Is there some solution which works without the Netbeans solution but with the standard Oracle Java classes and methods?
...
2
votes
2answers
129 views
Styling a JavaFX 2 button using FXML- How to add an image to a button ?
I want to change the styling of a button, most of the threads here and the articles on the internet show how to do it using Java code, which I don't see it as a real good solution, is there any way ...
0
votes
2answers
61 views
What is the best way to share the new version of Java source code between a group of programmers?
I started to work with a group of five new programmers on a large project. I'm looking for the best way to share the source code between all the members. Each person is modifying different parts but ...
0
votes
2answers
45 views
GUI not showing up initially (netbeans)
I'm very new to Java and even newer to NetBeans.. I just cannot figure out how to fix this issue..
When I run my project the GUI initially doesn't show up. There should be a menu bar with a drop ...
1
vote
2answers
65 views
bad operand type string for unary operator '+' [closed]
I'm currently working on a module class with several student objects and have been experiencing the following issue -
bad operand type string for unary operator '+'
I would appreciate any ...
0
votes
0answers
71 views
how to delete items from a jTable in NetBeans
I have made a small program in which after pressing a button the orders made by one customer are displayed on a JTable in Java. I am using Netbeans.
The results visualized on the Table, for example ...
0
votes
0answers
19 views
Using SmartGWT with NetBeans and GWT4NB
I want to install SmartGWT 3.1 to netbeans 7.2 but i don't know the right way for doing this i am also using GWT4NB
0
votes
1answer
19 views
I want to program using two computers, how can I setup a working directory to accomodate that
I am using netbeans to write a program. I have come a long way writing different classes on one of two computers, however I need to use both on the same classes. My net beans directory is on dropbox. ...
0
votes
1answer
17 views
Can't confirm Jacob interface in NetBeans
I have a project to work with COM and I use JACOB interface but I don't know confirm Jacob library into NetBeans! somebody know, can help me?
Thanks for your helps!
0
votes
1answer
106 views
Why doesn't netbeans 7.3 see that I've installed Java 1.7.0_21?
I've recently installed netbeans 7.3 on my Mac (Lion 10.7.5, up-to-date).
At the command line, I would get:
[129]$java -version
java version "1.6.0_45"
Java(TM) SE Runtime Environment (build ...
0
votes
1answer
55 views
Fun times with migrating maven projects from netbeans to eclipse
I have an interesting problem. So, we have a multi-module maven based project, that was originally written on Netbeans. The task is to migrate it to the Eclipse. I imported the project as an existing ...
1
vote
0answers
133 views
Cannot Compile “Hello World” in NetBeans IDE 7.3 with MinGW C++
I'm trying to make a simple "Hello World!" program inNetBeans IDE 7.3 with MinGW as my C++ compiler. However, I'm constantly having build failures and I'm an at a loss as to understanding why. I would ...
-1
votes
0answers
17 views
Data from class to class ~ Netbeans
I'm new to GUI programming with Netbeans. I have a problem with a code, as my program, when a button is pressed, will take you to a new JFrame with an Textfield to catch some data, but the problem is ...
0
votes
0answers
21 views
what “API Permissions” does NFC reader need?
I'm trying to make an application (for Sonim XP1301 phone) that reads NFC tags.
What "API Permissions" are needed for this? (On Netbeans "Properties -> Application Description -> API Permissions".)
0
votes
1answer
33 views
Netbeans visual editor suddenly flawed
I am currently developing a small application for my exams next month. I am using the visual editor of Netbeans.
Suddenly it stopped working, giving me the exception at the end of the thread.
It ...
1
vote
1answer
77 views
Netbeans cant read utf8 file names in mac
i have a project on my eclipse, one of its methods are reading list of files from a folder.
when i run it from eclipse or from an exported jar, its fine and works great.
But i have another project on ...
0
votes
1answer
67 views
running an elementary mapreduce job with java on hadoop
I am just getting started with linux/java/hadoop/EMR.
I am following this neat book.
The assignment is to run:
bin/hadoop jar hadoop-cookbook-chapter1.jar chapter1.WordCount input output
And this ...
0
votes
1answer
18 views
Syntax error parsing the query
after many search on web i cant find the properly solution to my case
i have a table whit several columns and i want to make a update in some off the columns
@NamedQueries({
@NamedQuery(name = ...
0
votes
0answers
42 views
How to solve memory leakage in java using Netbeans Profiler?
I am following these LINK1 and LINK2 to find the memory leaks of my Java application. The details of application is as following
Java
Struts2
Spring-Security
Maven
My application often runs into ...
0
votes
0answers
29 views
calling a function from textfield java gui
my question relates to java gui with netBeans
i'm trying to call a function from a TextField "Block"
but some how my gui freezing's when I do the following:
by the way if it's matters the other ...
0
votes
1answer
29 views
How to set a line breakpoint when using NetBeans remote debugger?
When using NetBeans debugger to debug an application remotely, is it possible to set a line breakpoint on a file?
Obviously, the source and bytecode are on the remote machine... NetBeans says it ...
0
votes
1answer
29 views
How do I get assets to work when exporting a jar? (Net Beans)
I've just a finished a program which makes use of lots of audio and image files. These are included in the project in src in the folder audio and images respectively. When I reference them I use use:
...
0
votes
4answers
49 views
jbutton changes text of text field
I am simply trying to make an employee clock. I have a keypad of numbers 0-9 and a text field. I want to be able to click the numbers and the numbers will appear on the text field. This seems so easy ...
-1
votes
0answers
17 views
I have confused to make a “time reminder feature” for this code of mobile calendar app in MIDP of Neatbeans
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class calender extends MIDlet implements
ItemStateListener, CommandListener
{
private Display display;
private ...
0
votes
4answers
83 views
how to make jtextfield text disappear when tabbed into (Netbeans)
I'm working on a gui that has multiple textfields that the user enters data into. When the program opens, I have the instructions for what the user is supposed to enter into the textfield set as the ...
0
votes
1answer
35 views
How to find JDK directory in Ubuntu for JNI C/C++ library
I am trying to use JNI for my recent project. MY IDE is NetBeans. After creating C/C++ project , I am trying to add JDK directory from project properties->C compiler->include directory.
I could not ...
4
votes
2answers
71 views
Why do I get this compilation warning in Netbeans?
I am working on a Java-EE project involving Glassfish 3.1.2.2 and the client component is running with Java 7 Update 21. The Swing-based client was formerly based on Java 6 Update 38 until we decided ...
1
vote
1answer
31 views
NetBeans cannot find stuff in a jar
I'm working on a project which wraps some C++ code using SWIG and then need to write a java interface around it. I can do this no problem manually but NetBeans is opaque enough I can't seem to get it ...
3
votes
1answer
37 views
Uneditable actionPerformed block in Netbeans
im currently developing an inventory system and accidentally cleared out the
// TODO add your handling code here:
portion.
now i need to insert some code but the braces wont budge and the method ...
0
votes
0answers
36 views
Error trying to build a JAVA EE application
I'm developement a web app using JAVA EE, JSF 2, Springs 3, RichFaces 4, Hibernate 3 and Netbeans. I've been developing this aplication for the last three months, and I always used the netbeans ...
0
votes
0answers
47 views
Number I entered into console is not visible?
I am using NetBeans C/C++ Ide with Mingw. My problem is when I run program in internal console, my printf sentence is not printed to console and also the number I entered is not visible. When I choose ...
0
votes
1answer
66 views
How can I get my makefile to compile/link older and newer GCC/GNU libraries? C++
I have GNU 4.7.1 as the default on my MacBook. I keep getting tons of segfaults when I run my program on my school's server. I downloaded the current state of my program from my schools server so that ...
0
votes
0answers
29 views
JavaHelp, creating the DefaultSearchEngine gives error
Am using JavaHelp with a java desktop application.
The application is developed with the NetBeans 7 IDE and pc with Windows 7 OS.
I have the topic files created as HTML files , helpset and the ...









