什么是
text类型的字段??

解决方案 »

  1.   

    用new String(char[] value)
      

  2.   

    还有new  String(byte[] bytes) 指定字符集
    String(byte[] bytes, String charsetName) 
              Constructs a new String by decoding the specified array of bytes using the specified charset.
      

  3.   

    你可以用textfield.getText().trim()来获得文本域里的数据
      

  4.   

    验证声明,是要把sql库里的text字段的内容显示出来。
      

  5.   

    getCharacterStream
    getAsciiStream
      

  6.   

    先用getBinaryStream 得到一个流
    然后对流处理!
      

  7.   

    不明白text类型,
    估计是文本筐的值吧,
    用getText()方法!!
      

  8.   

    text字段是一个字符由两个字节组成,我的方法是(仅参考用)
    先用getbytes( )或以流的形式读出来也行,在得到数据内容后,定义一个int 变量如 intVar;取出一个int数据后存入intVar中后,就用char(intVar)转化,并读出来;依次循环读出;你试试;