Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~5K People Reached
Favorite Tags

19 Posted Topics

Member Avatar for rubai
Member Avatar for vomhaus

[code] answers = rs.getString("itemKey"); [/code] You have to use arraylist of strings .

Member Avatar for murali_quest
0
105
Member Avatar for mudi12
Member Avatar for mudi12
0
262
Member Avatar for Katana24

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

Member Avatar for mKorbel
0
94
Member Avatar for sam.udo

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 …

Member Avatar for Taywin
0
233
Member Avatar for plasticfood

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 ,

Member Avatar for plasticfood
0
64
Member Avatar for msi_333

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 .

Member Avatar for msi_333
0
86
Member Avatar for elSifa

@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 { …

Member Avatar for quuba
0
2K
Member Avatar for chihwei

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 …

Member Avatar for peter_budo
0
199
Member Avatar for Ashwin Vasnai
Member Avatar for javaAddict
Member Avatar for javaAddict
0
127
Member Avatar for jrosh

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 : …

Member Avatar for msi_333
0
114
Member Avatar for dhriti22

and remmber your gateway router is using NAT( Network address translation ) .

Member Avatar for msi_333
0
103
Member Avatar for Chaster

Swing lib use threading to Draw as you may knew , can you please post the code .

Member Avatar for quuba
0
126
Member Avatar for msi_333

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] // …

Member Avatar for msi_333
0
671
Member Avatar for arunprashanth

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 .:)

Member Avatar for jwenting
0
128
Member Avatar for karthic_victory

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 …

Member Avatar for Ezzaral
0
148
Member Avatar for chihwei

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:

Member Avatar for ProgrammersTalk
0
209
Member Avatar for msi_333

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 …

Member Avatar for msi_333
0
183

The End.