How to convert String object to Boolean object?
-
3What is the value of the String?James Goodwin– James Goodwin2009-10-08 16:09:49 +00:00Commented Oct 8, 2009 at 16:09
-
3What's your expectation of how a string should be converted to a boolean?Steve Kuo– Steve Kuo2009-10-08 16:38:20 +00:00Commented Oct 8, 2009 at 16:38
-
1myvartypeboolean = !!valuetoconvertuser2818054– user28180542013-09-26 05:31:20 +00:00Commented Sep 26, 2013 at 5:31
16 Answers
Try (depending on what result type you want):
Boolean boolean1 = Boolean.valueOf("true");
boolean boolean2 = Boolean.parseBoolean("true");
Advantage:
- Boolean: this does not create new instances of Boolean, so performance is better (and less garbage-collection). It reuses the two instances of either
Boolean.TRUEorBoolean.FALSE. - boolean: no instance is needed, you use the primitive type.
The official documentation is in the Javadoc.
UPDATED:
Autoboxing could also be used, but it has a performance cost.
I suggest to use it only when you would have to cast yourself, not when the cast is avoidable.
5 Comments
boolean boolean2 = Boolean.valueOf("true");You have to be carefull when using Boolean.valueOf(string) or Boolean.parseBoolean(string). The reason for this is that the methods will always return false if the String is not equal to "true" (the case is ignored).
For example:
Boolean.valueOf("YES") -> false
Because of that behaviour I would recommend to add some mechanism to ensure that the string which should be translated to a Boolean follows a specified format.
For instance:
if (string.equalsIgnoreCase("true") || string.equalsIgnoreCase("false")) {
Boolean.valueOf(string)
// do something
} else {
// throw some exception
}
3 Comments
Beside the excellent answer of KLE, we can also make something more flexible:
boolean b = string.equalsIgnoreCase("true") || string.equalsIgnoreCase("t") ||
string.equalsIgnoreCase("yes") || string.equalsIgnoreCase("y") ||
string.equalsIgnoreCase("sure") || string.equalsIgnoreCase("aye") ||
string.equalsIgnoreCase("oui") || string.equalsIgnoreCase("vrai");
(inspired by zlajo's answer... :-))
1 Comment
Use the Apache Commons library BooleanUtils class:
String[] values= new String[]{"y","Y","n","N","Yes","YES","yes","no","No","NO","true","false","True","False","TRUE","FALSE",null};
for(String booleanStr : values){
System.out.println("Str ="+ booleanStr +": boolean =" +BooleanUtils.toBoolean(booleanStr));
}
Result:
Str =N: boolean =false
Str =Yes: boolean =true
Str =YES: boolean =true
Str =yes: boolean =true
Str =no: boolean =false
Str =No: boolean =false
Str =NO: boolean =false
Str =true: boolean =true
Str =false: boolean =false
Str =True: boolean =true
Str =False: boolean =false
Str =TRUE: boolean =true
Str =FALSE: boolean =false
Str =null: boolean =false
5 Comments
BooleanUtils is still wrong (although less so than Boolean methods), as it will not throw exception if the value neither recognized as true, or false. So ture (a typo that someone does somewhere) is still blindly assumed to mean false. I can't find anything in Guava either (like there's no Booleans.stringConverter as of 23.0).public static boolean stringToBool(String s) {
s = s.toLowerCase();
Set<String> trueSet = new HashSet<String>(Arrays.asList("1", "true", "yes"));
Set<String> falseSet = new HashSet<String>(Arrays.asList("0", "false", "no"));
if (trueSet.contains(s))
return true;
if (falseSet.contains(s))
return false;
throw new IllegalArgumentException(s + " is not a boolean.");
}
My way to convert string to boolean.
1 Comment
If you're aiming to just compare this string variable to a "false" or "true" string without hardcoding those two values, as was my case exactly, and you don't want to use Boolean.valueOf() since it will return true for anything it sees as "true" and will return false for everything else, as Brandon pointed out, you can do the following.
if (someStringVariable.equals(Boolean.TRUE.toString())) {
...
}
or similarly,
if (someStringVariable.equals(Boolean.FALSE.toString())) {
...
}
Comments
We created soyuz-to library to simplify this problem (convert X to Y). It's just a set of SO answers for similar questions. This might be strange to use the library for such a simple problem, but it really helps in a lot of similar cases.
import io.thedocs.soyuz.to;
Boolean aBoolean = to.Boolean("true");
Please check it - it's very simple and has a lot of other useful features
Comments
boolean status=false;
if (variable.equalsIgnoreCase("true")) {
status=true;
}
This is supported only if the string is 'true' (not case-sensitive). Later you can play with the status variable.
2 Comments
status=Boolean.valueOf(variable) you could simply write status=true, because this line is only executed for values for which that method returns exactly that value.To get the boolean value of a String, try this:
public boolean toBoolean(String s) {
try {
return Boolean.parseBoolean(s); // Successfully converted String to boolean
} catch(Exception e) {
return null; // There was some error, so return null.
}
}
If there is an error, it will return null. Example:
toBoolean("true"); // Returns true
toBoolean("tr.u;e"); // Returns null
1 Comment
parseBoolean(String s) does not throw an exception, according to the Javadoc.Visit http://msdn.microsoft.com/en-us/library/system.boolean.parse.aspx
This will give you an idea of what to do.
This is what I get from the Java documentation:
Method Detail
parseBoolean
public static boolean parseBoolean(String s)Parses the string argument as a boolean. The boolean returned represents the value true if the string argument is not
nulland is equal, ignoring case, to the string "true".Parameters:
s- the String containing the boolean representation to be parsedReturns: the boolean represented by the string argument
Since: 1.5
1 Comment
you can directly set boolean value equivalent to any string by System class and access it anywhere..
System.setProperty("n","false");
System.setProperty("y","true");
System.setProperty("yes","true");
System.setProperty("no","false");
System.out.println(Boolean.getBoolean("n")); //false
System.out.println(Boolean.getBoolean("y")); //true
System.out.println(Boolean.getBoolean("no")); //false
System.out.println(Boolean.getBoolean("yes")); //true