32,199 Topics
| |
I've always wondered how GObjects had such significantly improved pixel-rendering over objects sketched out by the Graphics object in paint and paintComponent methods. What approach should I take to receive the same effect for big images that are say 1024x960, when using simple Graphics? Is there some way to traverse … | |
Hey all..am quite new to Java and I have encoutered a problem with my program. I am getting the error message "cannot find symbol constructor". I have tried to figure it out but I have failed. I have read around that adding an empty constructor would help but this is … | |
Hello everyone. I was having a bit of a problem with printing out a text file using Formatter. Whenever my program writes to a file it prints everything on one line and when I type \n it prints out a square instead of a new line to separate my information. … | |
hey i am beginner in java. i am not able to resolve differences in interface and with abstract class. do abstract class have methods defined??does those methods have body?? if so for abstract classes do not create objects, how they r invoked?? | |
I know it is a rookie question but how do I get the system to print what is in personList? [code] private void buildPersonOptions() { List<Person> personList = null; try { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); Transaction tx = session.beginTransaction(); Query q = session.createQuery("from Person"); personList = (List<Person>) q.list(); } catch … | |
Hi there. i am trying to create an java class dealing with arrays though i am only new to programming. i have created a class with a char array field though i am not sure how to initialise it in the constructor. i am also trying to implement a few … | |
Hi. Does anyone know why i cannot write an object in a socket (any object) but i can write a primitive type such as an int. | |
i want a tool to convert the python files to java.Since i am completely unknown to python and want some python files converted to java...Can anyone please help me ??????U can reply to me directly on [email]tejas.dunk@gmail.com[/email] | |
I want to draw some text on a JFrame (later it'll change to a JPanel), but not have the text necessarily be horizontal. I've found some decent examples online that have worked well, but they've all been 500+ lines long. I'm hoping it can be done in a way that's … | |
Hi all I have made this small text editor and it works fine. I would just like you too look over it and give me any tips and things, that would make the code better (more acceptable to you). [code=java] import javax.swing.*; import java.io.*; import java.awt.*; import java.awt.event.*; public class … | |
Hi Folks, I'm a Java newbie so please forgive me if you've heard this one before... Got a question for ya about an small app I am working on. I have a banking app that creates accounts, then makes deposits and withdrawls to/from these accounts. Its very simple. I have … | |
[code=java] public class book { private double basePrice = 0; private double vat = 0; private double discount = 0; private double sellPrice; public book() { setBasePrice(0); setVat(0); setDiscount(0); } public book(double basePrice, double discount, double vat) { setBasePrice(basePrice); setVat(discount); setDiscount(vat); } public double getBasePrice() { return basePrice; } public … | |
Hi, I have a MySQL database I want to access with the Java Persistence API. The database I use consists of two tables (supplier and product) and is created with a SQL-script I made. Furthermore I generated the database classes (Suppliers and Product) with Netbeans using the "Entity Classes from … | |
Hi :) Could you tell me if there is any possible way to start IE or Mozilla in Java using Swing/AWT components? I don't want just to load html in jeditorpane, i want to really start ie or mozilla. Thanks. | |
Hi. Does anyone know why i get a classnotfoundexception when i try to read an object that implements the interface serializable from a socket. | |
hiya - i'm making a new game and want to know how to make a simple rounded race track. i've done everything else but want to know what to use. I've tried g.fillRoundRect(left.x,left.y,left.width,left.height,left.arcWidth,left.arcHeight); but an error pops up can anyone help - i want to make a simple race track … | |
Can a html that contains JavaScript be loaded in Swing ? | |
I have developed a java web application which runs in tomcat. the application is served by a another EJB application running in a different jboss server. all is done but i cant get a hosting service to host it. I tried nameonthe.net. but after one week they have refunded my … | |
[B]Hi Guys, I was thinking of creating this software with Java language but am still sceptical about it because the java runtime makes java applications slow. I came arouund the JNI and i thought i could implement java with it since i also know C and C++. The only problem … | |
hey, I'm having a problem in getting this programm right.. this is what it does...in every 1000ms it paint an image.. I'm using a new thread to paint the image....the thread taking care of the paining then creats a new thread to play the sound..But what i want is to … | |
Sir, is there any method which return the Local on giving a date as argument. publlic Locale getLocale(Date d){ // return locale } help me to get the locale. Please help me to get the locale on giving the date.Ie when i give us date,i need to get US. Please … | |
In: multiplication = var1 * var2 Division = var1 / var2 addition = var1 + var2 Subtraction = var1 - var2 exponentiation = ??? One more thing, how to read this one, isDigit? Thanks in advance | |
Hi, How to find out the repeating substrings in a string which is having maximum characters. eg : abc abcd a abc abcd Answer : abcd | |
[code=java] /* * IconDisplayer.java is a 1.4 application that requires the following files: * images/rocketship.gif */ import java.awt.AlphaComposite; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Insets; import java.awt.Rectangle; import javax.swing.BorderFactory; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JComponent; import javax.swing.JFrame; /* * This component displays a single icon one or … | |
Please i need some help on the JMF. i'm trying to develop a simple media player but dont know how to start as i am new to java. I would appreciate your kind assistance. | |
can any one write me the program to dowmload imges using java. i have wriitten a program using URL class it is able download index.html pages but not able to download images. my source code: [code] import java.net.*; import java.io.*; public class url { public static void main(String[] args) { … | |
i have some code that will make sound, a sine wave, actually, but i want to be able to actually play more than one sound at once, how can i modify this code to make it work. i found this on the internet somewhere, and it was hard to find. … | |
i am begginer in java. i need to know that is it necessary to use applets or componetnts or frames to download image from the specified url in java programming. can't we use simple java program to download images. | |
Hello everyone, I have started studying Java as a hobby but finding it a bit hard to understand. I am in need of help from someone with knowledge of Java If i could post you some questions about simple java programming i am trying to do, could you try please … |
The End.