• <sub id="h4knl"><ol id="h4knl"></ol></sub>
    <sup id="h4knl"></sup>
      <sub id="h4knl"></sub>

      <sub id="h4knl"><ol id="h4knl"><em id="h4knl"></em></ol></sub><s id="h4knl"></s>
      1. <strong id="h4knl"></strong>

      2. Java如何讀取文件內(nèi)容再編輯

        時(shí)間:2024-10-16 15:58:27 SUN認(rèn)證 我要投稿
        • 相關(guān)推薦

        Java如何讀取文件內(nèi)容再編輯

          有時(shí)候,我們需要將讀取文件的內(nèi)容到一個(gè)byte[] 數(shù)組中,然后對(duì)這個(gè)數(shù)組進(jìn)行一些修改,這時(shí),我們可以借助于ByteArrayOutputStream 這個(gè)類來實(shí)現(xiàn)。

        Java如何讀取文件內(nèi)容再編輯

          ByteArrayOutputStream,顧名思義,同樣是一個(gè)OutputStream,那么,對(duì)于它的寫入操作,和其他的 OutputStream應(yīng)該是沒有什么兩樣,寫入代碼可以說是隨手拈來的,與其他輸出流的不同之處在于,ByteArrayOutputStream寫入到內(nèi)存中,并提供一個(gè) toByteArray() 方法返回我們所需要的byte[]。

          Java代碼

          //保存上傳的附件信息

          String filename = files[0];

          String filepath = "upload/append/"+files[1];

          BufferedInputStream in = new BufferedInputStream(new FileInputStream(filepath));

          ByteArrayOutputStream out = new ByteArrayOutputStream(2048);

          System.out.println("available bytes"+in.available());

          byte[] temp = new byte[2048];

          int size =0;

          while((size = in.read(temp))!=-1){ out.write(temp,0,size);

          }

          in.close();

          byte[] content = out.toByteArray();

          String stream = new BaseCode64().EncodeBase64(content);

          System.out.println("content" +content.length);

          effect += insertAttachmentInfo(conn,attNo,processId,filename,stream);

          這里把讀取的流以base64保存,使用了類BaseCode64()的方法EncodeBase64。

          代碼如下:

          Java代碼

          package com.ving.xzfw.util;

          import java.io.ByteArrayOutputStream;

          public class BaseCode64 {

          private String TableBase64;

          private String FError;

          public BaseCode64()

          {

          TableBase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";

          FError = new String();

          FError = "";

          }

          public String DecodeBase64(byte [] Value){

          ByteArrayOutputStream o = new ByteArrayOutputStream();

          byte d[] = new byte[4];

          try

          {

          int count = 0;

          byte x[] = Value;

          do

          {

          if(count >= x.length)

          {

          break;

          }

          for(int n = 0; n <= 3; n++)

          {

          if(count >= x.length)

          {

          d[n] = 64;

          } else

          {

          int y = TableBase64.indexOf(x[count]);

          if(y < 0)

          {

          y = 65;

          }

          d[n] = (byte)y;

          }

          count++;

          }

          o.write((byte)(((d[0] & 0x3f) << 2) + ((d[1] & 0x30) >> 4)));

          if(d[2] != 64)

          {

          o.write((byte)(((d[1] & 0xf) << 4) + ((d[2] & 0x3c) >> 2)));

          if(d[3] != 64)

          {

          o.write((byte)(((d[2] & 3) << 6) + (d[3] & 0x3f)));

          }

          }

          } while(true);

          }

          catch(StringIndexOutOfBoundsException e)

          {

          FError = String.valueOf(String.valueOf(FError)) + String.valueOf(String.valueOf(e.toString()));

          System.out.println(e.toString());

          }

          return o.toString();

          }

          public String EncodeBase64(byte [] Value){

          ByteArrayOutputStream o = new ByteArrayOutputStream();

          byte d[] = new byte[4];

          try

          {

          int count = 0;

          for(byte x[] = Value; count < x.length;)

          {

          byte c = x[count];

          count++;

          d[0] = (byte)((c & 0xfc) >> 2);

          d[1] = (byte)((c & 3) << 4);

          if(count < x.length)

          {

          c = x[count];

          count++;

          d[1] = (byte)(d[1] + (byte)((c & 0xf0) >> 4));

          d[2] = (byte)((c & 0xf) << 2);

          if(count < x.length)

          {

          c = x[count];

          count++;

          d[2] = (byte)(d[2] + ((c & 0xc0) >> 6));

          d[3] = (byte)(c & 0x3f);

          } else

          {

          d[3] = 64;

          }

          } else

          {

          d[2] = 64;

          d[3] = 64;

          }

          int n = 0;

          while(n <= 3)

          {

          o.write(TableBase64.charAt(d[n]));

          n++;

          }

          }

          }

          catch(StringIndexOutOfBoundsException e)

          {

          FError = String.valueOf(String.valueOf(FError)) + String.valueOf(String.valueOf(e.toString()));

          System.out.println(e.toString());

          }

          return o.toString();

          }

          }

        【Java如何讀取文件內(nèi)容再編輯】相關(guān)文章:

        Android讀取本地json文件的方法07-06

        Java文件解壓縮示例08-21

        新建立的網(wǎng)站如何編輯用戶喜歡的內(nèi)容06-19

        php使用fgetcsv讀取csv文件出現(xiàn)亂碼怎么辦08-16

        java認(rèn)證考試培訓(xùn)內(nèi)容06-25

        Java文件解壓縮實(shí)例詳解201607-26

        如何編譯java程序09-28

        用PHP腳本在Linux系統(tǒng)上讀取輸入和對(duì)文件進(jìn)行操作10-28

        TTF字體文件如何安裝11-03

        Excel文件如何設(shè)置密碼08-25

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码
      3. <sub id="h4knl"><ol id="h4knl"></ol></sub>
        <sup id="h4knl"></sup>
          <sub id="h4knl"></sub>

          <sub id="h4knl"><ol id="h4knl"><em id="h4knl"></em></ol></sub><s id="h4knl"></s>
          1. <strong id="h4knl"></strong>

          2. 中文字幕在线亚洲日韩6页手机版 | 日本精品一二区性爱区 | 午夜亚洲国产理论片一二三四 | 中文字幕在线一级 | 日韩欧美中文字幕一本 | 亚洲另类日本欧美专区 |