This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Vectors and chars, MySql Db Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Vectors and chars, MySql Db" Watch "Vectors and chars, MySql Db" New topic
Author

Vectors and chars, MySql Db

Tim Tock
Greenhorn

Joined: Jan 15, 2004
Posts: 15
I would like to store a Char in a Vector, but it doesnt like it, is there anyway of getting around this?
Basically I have a program that returns maybe 5 or 6 chars, the last two are always duplicated say a, b, c, d, d, i dont want to solve this, but would like to say put them in a vector instead and just trim the vector down by one, to get a, b, c, d
After i have a vector or a string i would then like to put them into a mysql database, what format is the best way to send them to a database?
Hope this makes sense to someone
Thanks
T
Jim Yingst
Wanderer
Sheriff

Joined: Jan 30, 2000
Posts: 18670
There is no such thing as a "Char". There's a primitive type called "char", but you can't put a primitive in a Vector. That's what the wrapper classes like Integer (for int), Long, Float, Double, etc. are for. Try wrapping a char in a Character:
vector.add(new Character(c));
To be honest though, I'm not sure you even need a vector here. If you always want to trim the last char in a String, just use substring():
String newStr = str.substring(0, str.length() - 1);
To send to a database - well, using JDBC I suppose. If you've never used it, you can learn in this JDBC tutorial. Otherwise I'm not sure what you're asking.


"I'm not back." - Bill Harding, Twister
Tim Tock
Greenhorn

Joined: Jan 15, 2004
Posts: 15
Brilliant , i'll give it a go! Thanks again
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Vectors and chars, MySql Db
 
Similar Threads
Operations on characters
Sorting in Java
JSP-Servlet-EJB architectures
how to find all possible combinations of charcters in string