Qt Code:
  1. textedit->insertPlainText(QString.setNum(intArray[i]));
To copy to clipboard, switch view to plain text mode 
or
Qt Code:
  1. textedit->insertPlainText(QString.number(intArray[i]));
To copy to clipboard, switch view to plain text mode 
same with byte array do great work but in case int = 200 i.e.
it print -56

what is wrong with me?????????????