No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
19 Posted Topics
| |
Re: [code] answers = rs.getString("itemKey"); [/code] You have to use arraylist of strings . | |
Re: can you please post the code after resolving the problem . thanks in advance. | |
Re: Dear , what i understood from your problem that you are trying to draw images like ( images in table) , why you are increasing y only , why you don't increase x when you finish first column and so on | |
Re: This code snippet should help [CODE]public class BinaryTreeTest { public static void main(String[] args) { new BinaryTreeTest().run(); } static class Node { Node left; Node right; int value; public Node(int value) { this.value = value; } } public void run() { // build the simple tree from chapter 11. Node … | |
Re: it is better to use equals function instead of != , like this [code] while(!names1.equals("stop") [/code] and also can you print the value of names1 just to make sure , | |
hello all , If i have a static reference to object as a class member . and this object is a scheduler that contain ( Jobs , and triggers ) . is there any way to make this object lives even after my function call ends . | |
Re: @quuba [code] # // Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov Date: 2010-04-23 22:51:41 # // Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version! # // Decompiler options: packimports(3) fieldsfirst nonlb # // Source File Name: Roles.java # # # public final class Roles extends Enum { … | |
Re: Yes u can , U have to understand the deferents between public and private . If u made it private this means u can only access from inside the class .But using it as public means u can also access this variable from outside the class .This is a simple … | |
Re: static java methods is a bit slower than default methods .! | |
Re: You can't directly create a .exe file ,but you can directly create a jar file which is the executable file in java and it suppose to run on windows,Linux , etc .. I think you need a special tool to create and include an jar as exe . note : … | |
Re: and remmber your gateway router is using NAT( Network address translation ) . | |
Re: Swing lib use threading to Draw as you may knew , can you please post the code . | |
Hi all , what i want to do is to resample my large image into smaller resolution image and save it on the server, but the output image is corrupted when i open it in windows image viewer :(:( please help me , here is the code . [CODE=php] // … | |
Re: This depends on your application , there is something called session ID .this can be saved at the client and server side.The server extract the session ID from the HTTP request to identify the current session .:) | |
Re: these are some books names that i think it is good for the Java beginners : [LIST] [*]Thinking in Java [*]Core Java [*]How to Program (Java) [*]Learning Java in 21 days [/LIST] you can search for them on Google .. these books are not free , so u have to … | |
Re: Writing "public " (Access- Modifiers ) , is not the error here .The class can be written with out it and it will be friendly by default (Can be Accessed inside the same package ) ??:icon_exclaim: | |
This a problem i faced .When i made applet the access file i faced the following exception: [INLINECODE]java.security.AccessControlException: access denied (java.io.FilePermission text.txt read) at java.security.AccessControlContext.checkPermission(Unknown Source) at java.security.AccessController.checkPermission(Unknown Source) at java.lang.SecurityManager.checkPermission(Unknown Source) at java.lang.SecurityManager.checkRead(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileReader.<init>(Unknown Source) at CheckTopScore.<init>(CheckTopScore.java:30) at MainFrame.<init>(MainFrame.java:200) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native … |
The End.