Tagged Questions
5
votes
1answer
73 views
What's the difference between Name and CanonicalName?
What is the difference between Java's Class.getName() and Class.getCanonicalName()?
-1
votes
2answers
42 views
Make an email list, by entering only recipient names
I want to make a simple code, that prompts you to enter names, separated by comma or just a space, and when you click enter, to take every one word you entered, and put a @gmail.com at the end of it, ...
2
votes
2answers
54 views
Get names of the available members of a Java class
I'm trying to get the member names of a class in Java. For instance, let's say I have the class:
class Dog
{
private int legs = 4;
private int ears = 2;
}
Is there anyway I can get a list ...
0
votes
2answers
592 views
How to get column names from Hibernate query result in Java?
I'm writing a Java app that uses Hibernate to get data, in my app I have an input text area that takes an user typed-in sql command string and run that through Hibernate to get whatever data the user ...
0
votes
2answers
100 views
Why get error message when trying to get column name from Hibernate in Java?
I tried to get column names from Hibernate query in Java, I did some search online and found a solution, but when I tried the code, it gave me error messages :
private void executeHQLQuery(String ...
0
votes
2answers
208 views
Java: Sequential sorting names and saving into a Random Access File
I am trying to make a program where I can add a name and it's supposed to be saved in a RandomAccessFile, (alphabetically). Whenever I add a name it gets saved in a file, it's supposed to have at the ...
0
votes
2answers
119 views
Mass produce JTables
I want to make 25 JTables. I generate the table names by doing:
for(int i=0; i < 26; i++)
{
TableNames[i] = "Table" + i + "";
...
How can I go about using these String names in the array ...
4
votes
1answer
3k views
Java FileNameFilter
I've a requirement to get all the files in a directory that has a specific extension(say, .txt). I should be able to list all the files that has '.txt' and '.TXT' extension(i.e., it should be case ...
1
vote
6answers
119 views
Two classes in diffrence packages how to isolate them?
We have to develope a game, where the user can upload their code, for example Rock Paper Scissor. They have to implement some methods from an interface class and we call them in our game Class, ...
3
votes
8answers
2k views
Java find start of file name and extension
HI,
I have almost solved this but have now got stuck! What I need to do is look in a folder say..
String path = C://;
I then need a loop to see how many files are in that folder say 10. I need to ...
4
votes
6answers
8k views
Create variable names using a loop in Java?
first time poster, long time reader so be gentle with me :)
See the following code which works to generate me timestamps for the beginning and end of every month in a financial year.
int year = ...
0
votes
2answers
1k views
How to list all class names in the current package with Java?
In my Java project I need to list all class names in the current package, I usually run my app in two different modes : <1> From NetBeans, <2> From an executable jar file packaged by the ...
0
votes
9answers
11k views
Is there away to generate Variables' names dynamically in Java?
Let's say that I need to generate variables to hold some input from the user (I don't know how many they are). Without using Array, ArrayList (and other kind of lists and maps) can my code generate ...
