0
votes
1answer
58 views

OpenCSV Get Value from last row and specific column

I am trying to get the values from the second last row and third column in a semicolon separated file. I can't seat to get the values from the second last row and the third column. I have searched ...
0
votes
5answers
234 views

Java - String.split will not separate by semicolon

My code worked perfectly before when separating by comma, and now it won't work for semicolon! By comma: public void loadXXXData() { InputStream is = ...
1
vote
1answer
44 views

Perl5Matcher.matches(input, pattern) is returning true for input containing semicolon even when semicolon is not in pattern

I have a string MyString = "AP;"; or any other number of strings containing ; When I attempt to validate that MyString matches a pattern eg. MyPattern = "^[a-zA-Z0-9 ()+-_.]*$"; Which I believe ...
1
vote
3answers
58 views

Error on my semicolon seems unfixable [closed]

Here's all my code: @Override public void onEnable() { getLogger().info("Plugin Enabled!"); public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { ...
0
votes
3answers
288 views

Java Array of Strings in a Class - Curly brace error in Eclipse

I have searched SO for this, and have seen some similar questions, but not this question specifically (that I could find, anyway). I am receiveing a curly-brace / semicolon error on the lines before ...
26
votes
14answers
2k views

semicolon at end of if statement

Today, after half an hour of searching for a bug, I discovered that it is possible to put a semicolon after an if statement instead of code, like this: if(a == b); //do stuff which basically means ...
2
votes
8answers
127 views

Why I am not getting any Warning or Error when writing “;”?

Sorry if the question is bit weird but want to get some explanation. I have written this three lines below inside my Java code: ArrayList<String> QuestionID = new ArrayList<String>(); ; ...
0
votes
6answers
624 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
965 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 ...
12
votes
1answer
1k 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): ...
8
votes
3answers
2k 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. ...
0
votes
4answers
2k 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 ...