abdulr 0 Share Posted January 4, 2019 How do i convert [L]java.lang.String;@numbers to a valid output string GameObject random = getClosests("sadasdsad") then im trying to log the actions -> log(random.hasActions); but its coming in the java.lang format how do i convert it to normal strings Link to comment Share on other sites More sharing options...
ozeki6 32 Share Posted January 4, 2019 (edited) Just make a method that iterates through the object's actions. void outputActions(GameObject obj) { String actions[] = obj.getActions(); for(String action : actions) { log(action); } } It should be something like that ^ Edited January 4, 2019 by ozeki6 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now