Android reads the file stream from the resource file and displays the method _android

Source: Internet
Author: User

This example describes how Android reads a file stream from a resource file and displays it. Share to everyone for your reference. Specifically as follows:

In Android, if some text files, such as TXT in raw, to read directly out, put on the screen to display, you can:

private void Doraw () {
  InputStream is = This.getresources (). Openrawresource (R.raw.ziliao);
  try{
    Doread (IS);
  catch (IOException e) {
    e.printstacktrace ();
  }
}
private void Doread (InputStream is) throws ioexception{
  datainputstream dis = new DataInputStream (is);
  Byte[]buffer = new byte[is.available ()];
  dis.readfully (buffer); 
  Textview.settext (new String (buffer));
  Dis.close ();
  Is.close ();
}
is to use This.getresources (). Openrawresource that's it.

I hope this article will help you with your Android program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.