 |
 |
When posting your question please:- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode HTML tags when pasting" checkbox before pasting anything inside the PRE block, and make sure "Ignore HTML tags in this message" check box is unchecked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-fou
|
|
|
|
 |
Hi,
I just want to check that the given PDF file is 3D PDF or normal PDF file. Can some one know how can I do this in JAVA?
Regards,
Ravi
|
|
|
|
 |
You would need to check the PDF specification to see how to tell the difference. Although I am not sure there is such a thing as a "3D PDF file".
|
|
|
|
|
 |
I'm fairly new to programming especially ones that use database. I can make software that use database but only with .NET and using MySql with XAMPP. However I'm still trying to figure out how to do that in Java because I'm currently learning the language.
However I saw this application which is an application for saving solve times for rubik's cube speedsolves. The software is called Prisma Puzzle Timer. [Download]
The software generates a file with the .db extension on first run in the same directory of the .jar file. I assume this is the database.
My question is how can this be done? And what type of database is it? (the .db file extension)
Although the said software is open source, I don't have enough knowledge to understand the source to even find where the database creation is implemented (though I'm still trying to read through the source and I'm still in my learning phase in Java programming).
|
|
|
|
 |
The .db extension on the file tells us nothing, because it depends on the program that is generating it as to what format it takes. If you are interested in using databases from Java, and Java itself, then your time would be better spent studying the Java Tutorials[^].
|
|
|
|
 |
Ah, yes. I just got familiar with that file extension meaning nothing. I actually tried The Java Tutorials but I had a hard time understanding everything there. Perhaps I didn't had enough programming experience yet because I think they assume you've had C++ knowledge already. So I'm currently learning Java with other tutorials.
Anyway I'm familiar with MySql.
|
|
|
|
 |
extranghero wrote: I had a hard time understanding everything there. Perhaps I didn't had enough programming experience yet because I think they assume you've had C++ knowledge already. No, you should be able to work through those tutorials without any previous programming experience. The introduction starts from the very basic concepts.
|
|
|
|
 |
I think what you mean is to have an embedded database in your application. Well in that case, you have a number of choices. I would suggest you look at [Hypersonic SQL^]. It is lightweight and quite mature.
Another option is to look at [Sqlite^]. I have not used it in a Java project before, but it is quite a nice and fast little database.
|
|
|
|
 |
Derby is another choice. Might be better for someone learning java.
|
|
|
|
|
 |
Alright I'll also read about this. Thanks.
|
|
|
|
 |
Thanks! I will try to have a look at HyperSonic SQL. Hope this will work for me.
|
|
|
|
 |
I have created some java codings but i want to convert to a exe file.
|
|
|
|
|
 |
i want ask java programing can do what effect in software?
|
|
|
|
 |
One thing it can't do is parse garbled english.
|
|
|
|
|
 |
i dont know any programming language but im intrested so help me i like java . java basics and programing how to no help me
kickan
|
|
|
|
 |
i dont know any programming language but im intrested so help me i like java . java basics and programing how to no help me
|
|
|
|
 |
The first thing you need to do is to learn how to use Google to help you in your research. A quick search for "Java tutorials" would have found you The Java Tutorials[^]; clear, concise and useful for anyone new to programming.
|
|
|
|
 |
JAVA is Free: Unlike programming languages like Dot Net where you need to pay Microsoft to get license copy software for application development, JAVA is FREE to download. Due to this JAVA is very popular over other paid programming languages.
Java easy to learn: JAVA programming is easy to learn was compared to C or C++. JAVA has a similar syntax like C++.
JAVA is Platform independent: JAVA stands true to its tagline “Write once and run anywhere”. You create JAVA applications in Windows and run it in Linux or other operating systems and vice versa.
JAVA Open source Libraries: JAVA has a rich set of API and Documentation, which helps in developing your applications faster. Java has global talent pool to help.
Garbage Collection: JAVA has a powerful memory management technique i.e. called garbage collector, so Programmers do not have to worry about memory issues in application.
|
|
|
|
 |
let,
upper bound = 100
lower bound = 60
starting seed = 62
program prints random number starting from 62 at regular time intervals within this limit.
How can i implement this program in java?
|
|
|
|
|
 |
I noticed in one of my professor's MVC Java programming projects he put a Controller class inside a model package.
Is it true that in MVC often people use just MV and don't bother with the C because they don't think it's worth creating another layer just for a couple of extra classes?
It seemed illogical to me to put a controller inside a model package.
|
|
|
|
 |