Whoa, I remember this game. You might want to take a look at Coordinates in Hexagon-Based Tile Maps or Hex Coordinate Systems to help you get started. You're almost certainly going to want to have an object that represents each piece. In it you would store the position, references to adjacent pieces and the current state.
Somewhere in the beginning you're still going to have to construct what pieces belong where on the board, since this game has a specific layout. You can probably store this in some array to represent the board. Then at startup you'll interpret it to construct the objects with the right coordinates and associates. Then to draw it each frame you can just iterate over those objects. E.g. the array could look something like this:
String[] board = new String[] {
" X ",
" X X ",
" X X X ",
" X X X X ",
"X X X X X",
" X X X X ",
"X X X X",
" X X X X ",
"X X X X X",
" X X ",
"X X X X X",
" X X X X ",
"X X X X X",
" X X X X ",
" X X X ",
" X X ",
" X "
};
Parsing that will be interesting :) Good luck!