Hello everyone

I am a new guy here, wanna ask a question which puzzle me for a few days...
I want to use Bluetooth device
http://goods.ruten.com.tw/item/show?21204206581641(baud 57600, Input_Voltage is 3.6V~6V, Frequency)
on my Arduino 2560 and receive data,but it did not work
Here is how I connect:BT_device <-> arduino
VCC <-> 5V
GND <-> GND
TX <-> RX1(or 2 , 3)
RX <-> TX1
The BT device did successfully connected, but it only receive "224" when I send other numbers(recive"0"or"-1"when not sending)
I have checked with PC BT_device that the message I send is correct
Is my BT device broken(that is new

),or I missed something?
=====Here is my code=====#include <SoftwareSerial.h>
int BTread;
void setup()
{
Serial.begin(57600);
Serial1.begin(57600);
}
void loop()
{
BTread =Serial1.read();
Serial.println(BTread);
}