Tagged Questions

8
votes
3answers
619 views

When would you put a semicolon after a method closing brace?

I've been programming in Java for a while, and I've just come across this syntax for the first time: public Object getSomething(){return something;}; What's interesting me is the final semicolon. ...
4
votes
1answer
312 views

IntelliJ and the semi-colon character

I'm finally making the voyage back to IntelliJ via Eclipse. Currently my Eclipse is set up so that if I currently have a statement such as this (where ^ denotes where my cursor currently sits): ...
0
votes
6answers
87 views

Split semicolon file into arrays, something strange

I want to split a word string that every word is splited with a semicolon into a array. Why is the length of this string just 2? How can I make the length of the array to always bee 6, because every ...
0
votes
5answers
372 views

Why do we add a semicolon in java PATH variable and not for the JAVA_HOME variable?

I have a very basic question to ask, that why do we need to add a semicolon at the end of PATH variable and why don't we add semicolon in JAVA_HOME variable? I read lot of books and forums, To ...
0
votes
4answers
1k views

Convert Semi-Colon Text to Excel

I need to convert a semi-colon delimited file to an Excel. However, there are some fields that must be removed from the Excel file, and some extra fields to be added. These extra fields are drop-down ...