Home php教程 PHP源码 PHP实现java中的DatainputStream类.

PHP实现java中的DatainputStream类.

May 25, 2016 pm 05:11 PM

在项目中,碰到一个解析流的操作,php里面没有现成的类. 
那没办法,只能用二进制模式打开文件,再和java的datainputstream对比着打开文件,一个一个的实现流读取和解析. 

废话不多说,代码贴出,其实很简单很简单. 

DataInputStream.php

<?php
/**
 * 流解析
 * ---------------------------------------------
 * @Author: Simon 夏向红 sanwkj@163.com
 * @Date: 2012-02-22
 * @package cn.com.nearme.gostore.theme
 * @name :DataInputStream.php
 * @version v1.0
 * 
*/
class DataInputStream {
    private $stream = null;
     
    /**
     * 构造函数
     *
     * @param stream of fopen .. $in
     */
    public function __construct( $in ){
        $this->stream = $in;
    }
     
    /**
     * 析构函数
     *
     */
    public function __destruct(){
        @fclose( $this->stream );
    }
     
    /**
     * 读取字节
     *
     * @param int sizeof you want to read $len
     * @return string
     */
    private function read( $len=1 ){
        $len = intval( $len );
        if( $len>0 ) {
            if( !feof( $this->stream ) ) {
                $read = @fread($this->stream,$len);
                if( strlen($read)!=$len ){
                    throw new Exception(&#39;流文件已经到末尾,读取错误&#39;,222);
                } else {
                    return $read;
                }
            } else {
                throw new Exception(&#39;流文件已经到末尾,读取错误&#39;,222);
            }
        } else {
            return &#39;&#39;;
        }
    }
     
    /**
     * 读取一个字节,并转换成int
     *
     * @return int
     */
    public function readByte(){
        return hexdec(bin2hex($this->read(1)));
    }
     
    /**
     * 短整形
     *
     * @return int
     */
    public function readShort(){
        return hexdec(bin2hex($this->read(2)));
    }
     
    /**
     * 整形数据
     *
     * @return int
     */
    public function readInt(){
        return hexdec(bin2hex($this->read(4)));
    }
     
    /**
     * 读取一个字符串
     *
     * @return string
     */
    public function readUTF(){
        $len = $this->readShort();
        return $this->read($len);
    }
     
    /**
     * 读取指定长度的数据,并作为字符串返回,图片等二进制文件,可能需要这样读取.
     *
     * @param int $len
     * @return unknown
     */
    public function readFully( $len ) {
        return $this->read( $len );
    }
     
    /**
     * readUTF的别名
     *
     * @return unknown
     */
    public function readString(){
        return $this->readUTF();
    }
     
    /**
     * 长整形.
     *
     * @return unknown
     */
    public function readLong(){
        return hexdec(bin2hex($this->read(8)));
    }
}
?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)