Java DataOutputStream flush()方法与示例

DataOutputStream类flush()方法 (DataOutputStream Class flush() method)

  • flush() method is available in java.io package.

    flush()方法在java.io包中可用。

  • flush() method is used to flush this stream and forces bytes to be written to the basic stream.

    flush()方法用于刷新此流,并强制将字节写入基本流。

  • flush() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    flush()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • flush() method may throw an exception at the time of flushing the stream.

    flush()方法在刷新流时可能会引发异常。

    IOException: This exception may throw when getting any input/output error.

    IOException :遇到任何输入/输出错误时,可能引发此异常。

Syntax:

句法:

    public void flush();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is void, it returns nothing.

该方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example 
// of void flush() method of DataOutputStream

import java.io.*;

public class FlushOfDOS {
 public static void main(String[] args) throws IOException {
  InputStream is_stm = null;
  DataInputStream dis_stm = null;
  FileOutputStream fos_stm = null;
  DataOutputStream dos_stm = null;
  byte[] b_arr = {
   12,
   20,
   45,
   98,
   75,
   69,
   30,
   58,
   47,
   61,
   83,
   55
  };

  try {
   // Instantiate FileInputStream, 
   // DataInputStream, FileOutputStream
   // and DataOutputStream 

   fos_stm = new FileOutputStream("C:\\Users\\Preeti Jain\\Desktop\\programs\\includehelp.txt");
   dos_stm = new DataOutputStream(fos_stm);
   is_stm = new FileInputStream("C:\\Users\\Preeti Jain\\Desktop\\programs\\includehelp.txt");
   dis_stm = new DataInputStream(is_stm);

   // Loop to write each byte till end
   for (byte val: b_arr) {
    // By using write() method isto
    // write a byte value to the
    // DataOutputStream dos_stm
    dos_stm.write(val);
   }

   // By using flush() method isto
   // flush the stream and forces bytes
   // are written out immediately of any 
   // buffered output
   dos_stm.flush();

   // Loop To Read Available Data till end
   while (dis_stm.available() > 0) {
    // By using read() method isto read 
    // byte from dis_stm
    int in = dis_stm.read();
    System.out.println("dis_stm.read(): " + in );
   }
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // To free system resources linked
   // with these streams
   if (is_stm != null)
    is_stm.close();

   if (dis_stm != null)
    dis_stm.close();

   if (dos_stm != null)
    dos_stm.close();

   if (fos_stm != null)
    fos_stm.close();
  }
 }
}

Output

输出量

dis_stm.read(): 12
dis_stm.read(): 20
dis_stm.read(): 45
dis_stm.read(): 98
dis_stm.read(): 75
dis_stm.read(): 69
dis_stm.read(): 30
dis_stm.read(): 58
dis_stm.read(): 47
dis_stm.read(): 61
dis_stm.read(): 83
dis_stm.read(): 55


翻译自: https://www.includehelp.com/java/dataoutputstream-flush-method-with-example.aspx

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是Java中使用HttpURLConnection发送Form请求的示例代码: ```java import java.io.DataOutputStream; import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class FormRequestDemo { public static void main(String[] args) throws IOException { String url = "http://example.com/api/user"; String formData = "username=johndoe&password=123456"; byte[] formDataBytes = formData.getBytes(StandardCharsets.UTF_8); URL apiUrl = new URL(url); HttpURLConnection connection = (HttpURLConnection) apiUrl.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); connection.setRequestProperty("Content-Length", Integer.toString(formDataBytes.length)); connection.setDoOutput(true); DataOutputStream outputStream = new DataOutputStream(connection.getOutputStream()); outputStream.write(formDataBytes); outputStream.flush(); outputStream.close(); int responseCode = connection.getResponseCode(); System.out.println("Response Code: " + responseCode); } } ``` 代码中,`url`变量表示请求的URL地址,`formData`变量表示提交的表单数据。首先将表单数据转换为字节数组,然后设置请求头信息,包括Content-Type和Content-Length。设置完请求头之后,将表单数据写入到请求体中,然后发送请求。最后,通过getResponseCode()方法获取响应码。 注意,这里的请求方式是POST,如果是GET请求,可以将请求数据拼接到URL后面,例如: ```java String url = "http://example.com/api/user?username=johndoe&password=123456"; URL apiUrl = new URL(url); HttpURLConnection connection = (HttpURLConnection) apiUrl.openConnection(); connection.setRequestMethod("GET"); int responseCode = connection.getResponseCode(); System.out.println("Response Code: " + responseCode); ``` 这里的请求方式是GET,请求数据通过URL的参数传递。在实际开发中,需要根据具体的接口文档和要求来选择合适的请求方式和数据传输方式。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值