java 二维码生成+解析 工具zxing

有logo  图片

package com.palmble.common.zxing;

import javax.imageio.ImageIO;

import java.awt.*;

import java.awt.geom.RoundRectangle2D;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

public class LogoUtil {

    public static BufferedImage logoMatrix(BufferedImage bufferedImage,String logopath) throws IOException {

        //在二维码上画logo:产生一个 二维码画板

        Graphics2D graphics2D=bufferedImage.createGraphics();

        BufferedImage logoImg= ImageIO.read(new File(logopath));

        int width=bufferedImage.getWidth();

        int height=bufferedImage.getHeight();

        //logo

        graphics2D.drawImage(logoImg,width*2/5,height*2/5,width*1/5,height*1/5,null);

        //画笔

        BasicStroke stroke=new BasicStroke(5,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);

        //关联画笔

        graphics2D.setStroke(stroke);

        //创建一个正方形

        RoundRectangle2D.Float round=new RoundRectangle2D.Float(width*2/5,height*2/5,width*1/5,height*1/5,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);

        graphics2D.setColor(Color.WHITE);//白色

        graphics2D.draw(round);

        //灰色

        BasicStroke stroke2=new BasicStroke(1,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);

        graphics2D.setStroke(stroke2);

        RoundRectangle2D.Float round2=new RoundRectangle2D.Float(width*2/5+2,height*2/5+2,width*1/5-4,height*1/5-4,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);

        graphics2D.setColor(Color.GRAY);//灰色

        graphics2D.draw(round2);

        graphics2D.dispose();

        bufferedImage.flush();

        return  bufferedImage;

    }

}



二维码生成和读的工具类 使用google 开发的 zxing

package com.palmble.common.zxing;

import com.google.zxing.*;

import com.google.zxing.client.j2se.MatrixToImageConfig;

import com.google.zxing.client.j2se.MatrixToImageWriter;

import com.google.zxing.common.BitMatrix;

import com.google.zxing.common.HybridBinarizer;

import com.google.zxing.qrcode.QRCodeReader;

import com.google.zxing.qrcode.QRCodeWriter;

import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;

import javax.imageio.ImageIO;

import java.awt.*;

import java.awt.image.BufferedImage;

import com.google.zxing.client.j2se.BufferedImageLuminanceSource;

import java.io.*;

import java.util.EnumMap;

import java.util.HashMap;

import java.util.Hashtable;

import java.util.Map;

/**

*

* 二维码生成和读的工具类 使用google 开发的 zxing

* 参数介绍:

*      ZXing采用Hashtable方式来保存设置参数:纠错能力为 L 级别,设置编码类型为UTF-8

*      位矩阵二维码数据 BitMatrix

*/

public class QrCodeUtil {

    private String content;                //二维码内容

    private String qrCodeUrl;          //二维码网络路径

    private String filePath;          //二维码生成物理路径 也可以是文件的绝对路径

    private String fileName;          //二维码生成图片名称(包含后缀名)

    private String imageFormat;      //二维码图片后缀名(jpg、png)

    private String logoPath;          //logo图片

    private Integer width = 300;          //二维码宽度

    private Integer height = 300;          //二维码高度

    private Integer onColor = 0xFF000000;  //前景色 黑色

    private Integer bgColor = 0xFFFFFFFF; //背景色 白色

    private Integer margin = 2;            //白边大小,取值范围0~4

    private ErrorCorrectionLevel level = ErrorCorrectionLevel.M;  //二维码容错率指 纠错级别(L 7%、M 15%、Q 25%、H 30%)

    /**

    * 生成二维码 属性:content、fileName、filePath不得为空

    * @throws Exception

    */

    public void createQRCode() throws Exception {

        String imgPath = this.getFilePath();

        String imgName = this.getFileName();

        String content = this.getContent();

        String imageFormat = this.getImageFormat();

        if (imageFormat == null || imgPath == null || content == null) throw new Exception("参数错误");

        boolean flag;

        String[]  arr=filePath.split("\\.");

        if(arr.length==1) flag=true;

        else if(arr.length==2) flag=false;

        else throw new Exception("判断路径类型错误");

        if(flag) {//imgPath 是物理路径

            if (this.getLogoPath() != null && !"".equals(this.getLogoPath().trim()))

                generateQRCodeWithLogo(content, this.getLogoPath(), imgPath, imgName, imageFormat);

            else generateQRCode(content, imgPath, imgName, imageFormat);

        }else{//imgPath 是绝对路径

            if (this.getLogoPath() != null && !"".equals(this.getLogoPath().trim())) generateQRCodeWithLogo(content, this.getLogoPath(), imgPath, imageFormat);

            else generateQRCode(content, imgPath, imageFormat);

        }

    }

    /**

    * 生成二维码

    * @param content      //二维码内容

    * @param imgPath      //二维码保存物理路径

    * @param imgName      //二维码文件名称

    * @param suffix      //图片后缀名

    */

    public void generateQRCode(String content, String imgPath, String imgName, String suffix) throws Exception{

        File filePath = new File(imgPath);

        if(!filePath.exists()){

            throw new Exception("文件路径不存在");

        }

        File imageFile = new File(imgPath,imgName);

        Hashtable<EncodeHintType, Object> hints = new Hashtable<>();

        hints.put(EncodeHintType.ERROR_CORRECTION, level); // 指定纠错等级

        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); // 指定编码格式

        hints.put(EncodeHintType.MARGIN, this.getMargin());//设置白边

        MatrixToImageConfig config = new MatrixToImageConfig( this.getOnColor() , this.getBgColor());

        BitMatrix bitMatrix = new MultiFormatWriter().encode(content,BarcodeFormat.QR_CODE, this.getWidth(), this.getHeight(), hints);

//      bitMatrix = deleteWhite(bitMatrix);

        MatrixToImageWriter.writeToPath(bitMatrix, suffix, imageFile.toPath(), config);

    }

    /**

    * 生成二维码

    * @param content      //二维码内容

    * @param path          //二维码保存文件 绝对路径 如:d:\\qrcode.jpg)

    * @param suffix      //图片后缀名

    */

    public void generateQRCode(String content, String path, String suffix) throws Exception{

        File imageFile = new File(path);

        if (!imageFile.getParentFile().exists()) {

            imageFile.getParentFile().mkdirs();

        }

        Hashtable<EncodeHintType, Object> hints = new Hashtable<>();

        hints.put(EncodeHintType.ERROR_CORRECTION, level); // 指定纠错等级

        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); // 指定编码格式

        hints.put(EncodeHintType.MARGIN, this.getMargin());//设置白边

        MatrixToImageConfig config = new MatrixToImageConfig( this.getOnColor() , this.getBgColor());

        BitMatrix bitMatrix = new MultiFormatWriter().encode(content,BarcodeFormat.QR_CODE, this.getWidth(), this.getHeight(), hints);

        MatrixToImageWriter.writeToPath(bitMatrix, suffix, imageFile.toPath(), config);

    }

    /**

    * 生成带logo的二维码图片

    * @param content      //二维码内容

    * @param logoPath    //logo绝对物理路径

    * @param imgPath      //二维码保存绝对物理路径

    * @param imgName      //二维码文件名称

    * @param suffix      //图片后缀名

    * @throws Exception

    */

    public void generateQRCodeWithLogo(String content, String logoPath, String imgPath, String imgName, String suffix) throws Exception{

        File filePath = new File(imgPath);

        if(!filePath.exists()){

            filePath.mkdirs();

        }

        if(imgPath.endsWith("/")){

            imgPath += imgName;

        }else{

            imgPath += "/"+imgName;

        }

        Hashtable<EncodeHintType, Object> hints = new Hashtable<>();

        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");

        hints.put(EncodeHintType.ERROR_CORRECTION, this.getLevel());

        hints.put(EncodeHintType.MARGIN, this.getMargin());  //设置白边

        BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, this.getWidth(), this.getHeight(), hints);

        File qrcodeFile = new File(imgPath);

        writeToFile(toBufferedImage(bitMatrix), suffix, qrcodeFile, logoPath);

    }

    /**

    * 生成带logo的二维码图片

    * @param content      //二维码内容

    * @param logoPath    //logo绝对物理路径

    * @param path        //二维码保存文件 绝对路径 如:d:\\qrcode.jpg)

    * @param suffix      //图片后缀名

    * @throws Exception

    */

    public void generateQRCodeWithLogo(String content, String logoPath, String path, String suffix) throws Exception{

        Hashtable<EncodeHintType, Object> hints = new Hashtable<>();

        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");

        hints.put(EncodeHintType.ERROR_CORRECTION, this.getLevel());

        hints.put(EncodeHintType.MARGIN, this.getMargin());  //设置白边

        BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, this.getWidth(), this.getHeight(), hints);

        File qrcodeFile = new File(path);

        writeToFile(toBufferedImage(bitMatrix), suffix, qrcodeFile, logoPath);

    }

    /**

    * @param image 二维码矩阵相关

    * @param format 二维码图片格式

    * @param file 二维码图片文件

    * @param logoPath logo路径

    * @throws IOException

    */

    public  void writeToFile( BufferedImage image,String format,File file,String logoPath) throws Exception {

        //读取二维码图片

        Graphics2D gs = image.createGraphics();

        int ratioWidth = image.getWidth()*2/10;

        int ratioHeight = image.getHeight()*2/10;

        //载入logo

        Image img = ImageIO.read(new File(logoPath));

        //设置二维码覆盖(logo大小),太大会覆盖二维码,此处20%

        int logoWidth = img.getWidth(null)>ratioWidth?ratioWidth:img.getWidth(null);

        int logoHeight = img.getHeight(null)>ratioHeight?ratioHeight:img.getHeight(null);

        //设置logo图片放置位置

        int x = (image.getWidth() - logoWidth) / 2;

        int y = (image.getHeight() - logoHeight) / 2;

        gs.drawImage(img, x, y, logoWidth, logoHeight, null);

        //logo边框大小

        gs.setStroke(new BasicStroke(1));

        // gs.setColor(Color.black);

//        gs.drawRect(x, y, logoWidth, logoHeight);

        gs.setBackground(Color.WHITE);

        gs.dispose();

        img.flush();

        if(!ImageIO.write(image, format, file)){

            throw new Exception("不能把图片"+file+"转成" + format + " 格式 ");

        }

    }

    //把数据放入图片缓冲区

    public BufferedImage toBufferedImage(BitMatrix matrix){

        int width = matrix.getWidth();

        int height = matrix.getHeight();

        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

        for(int x=0;x<width;x++){

            for(int y=0;y<height;y++){

                image.setRGB(x, y, matrix.get(x, y) ? this.getOnColor() : this.getBgColor());

            }

        }

        return image;

    }

    /**

    * 读二维码并输出携带的信息

    */

    public String readQrCode() throws Exception{

        File filePath = new File(this.getFilePath());

        if(!filePath.exists()){

            throw new Exception("文件不存在");

        }

        InputStream inputStream=new FileInputStream(filePath);

        //从输入流中获取字符串信息

        BufferedImage image = ImageIO.read(inputStream);

        //将图像转换为二进制位图源

        LuminanceSource source = new BufferedImageLuminanceSource(image);

        BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));

        QRCodeReader reader = new QRCodeReader();

        Result result = reader.decode(bitmap);

        return result.getText();

    }

    /**

    * 生成包含字符串信息的二维码图片

    * @param saveImgPath 文件输出流路径

    * @param content 二维码携带信息

    * @param qrCodeWidth 二维码图片宽度

    * @param qrCodeHeight 二维码图片高度

    * @param imageFormat 二维码的格式

    * @throws WriterException

    * @throws IOException

    */

    public static boolean createQrCode(String saveImgPath, String content, int qrCodeWidth, int qrCodeHeight, String imageFormat) throws Exception{

        File filePath = new File(saveImgPath);

        OutputStream outputStream=new FileOutputStream(filePath);

        Hashtable<EncodeHintType, Object> hashtable = new Hashtable<>();//

        hashtable.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L); // 指定纠错等级,纠错级别(L 7%、M 15%、Q 25%、H 30%)

        hashtable.put(EncodeHintType.CHARACTER_SET, "utf-8");// 使用字符集编码

        hashtable.put(EncodeHintType.MARGIN, 1);//设置二维码边的空度,非负数

        QRCodeWriter qrCodeWriter = new QRCodeWriter();

        //创建比特矩阵(位矩阵)的QR码编码的字符串

        BitMatrix bitMatrix = qrCodeWriter.encode(content, BarcodeFormat.QR_CODE, qrCodeWidth, qrCodeHeight, hashtable);

        // 使BufferedImage勾画QRCode  (matrixWidth 是行二维码像素点)

        int matrixWidth = bitMatrix.getWidth();

        BufferedImage image = new BufferedImage(matrixWidth-200, matrixWidth-200, BufferedImage.TYPE_INT_RGB);

        image.createGraphics();

        Graphics2D graphics = (Graphics2D) image.getGraphics();

        graphics.setColor(Color.WHITE);

        graphics.fillRect(0, 0, matrixWidth, matrixWidth);

        graphics.setColor(Color.BLACK);

        // 使用比特矩阵画并保存图像

        for (int i = 0; i < matrixWidth; i++){

            for (int j = 0; j < matrixWidth; j++){

                if (bitMatrix.get(i, j)){

                    graphics.fillRect(i-100, j-100, 1, 1);

                }

            }

        }

        return ImageIO.write(image, imageFormat, outputStream);

    }

    /**

    * 读二维码并输出携带的信息

    */

    public static String readQrCode(String imgPath) throws Exception{

        File filePath = new File(imgPath);

        if(!filePath.exists()){

            throw new Exception("文件不存在");

        }

        InputStream inputStream=new FileInputStream(filePath);

        //从输入流中获取字符串信息

        BufferedImage image = ImageIO.read(inputStream);

        //将图像转换为二进制位图源

        LuminanceSource source = new BufferedImageLuminanceSource(image);

        BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));

        QRCodeReader reader = new QRCodeReader();

        Result result = reader.decode(bitmap);

        return result.getText();

    }

    /**

    * 测试代码

    * @throws Exception

    */

    public static void main(String[] args) throws Exception {

        //静态方法

        //createQrCode(new FileOutputStream(new File("d:\\qrcode.jpg")),"德玛西亚",200,200,"JPEG");

        //readQrCode("d:\\142.png");

        //使用对象 生成二维码

        QrCodeUtil qrCodeUtil=new QrCodeUtil();

        qrCodeUtil.setContent("在海南的朋友们想买野生土蜂蜜可以找我哟!!!!");

        qrCodeUtil.setFilePath("d:/qrcode.jpg");

        qrCodeUtil.setImageFormat("jpeg");

        qrCodeUtil.setLogoPath("d:/1.png");

        qrCodeUtil.setWidth(300);

        qrCodeUtil.setHeight(300);

        qrCodeUtil.createQRCode();//生成二维码

        //使用对象 读取二维码

      // QrCodeUtil qqq=new QrCodeUtil();

//        String result= qqq.readQrCode();

//        String result= QrCodeUtil.readQrCode("d:/142.png");

      // System.out.println(result);

    }

    public String getContent() {

        return content;

    }

    public void setContent(String content) {

        this.content = content;

    }

    public String getQrCodeUrl() {

        return qrCodeUrl;

    }

    public void setQrCodeUrl(String qrCodeUrl) {

        this.qrCodeUrl = qrCodeUrl;

    }

    public String getFilePath() {

        return filePath;

    }

    public void setFilePath(String filePath) {

        this.filePath = filePath;

    }

    public String getFileName() {

        return fileName;

    }

    public void setFileName(String fileName) {

        this.fileName = fileName;

    }

    public String getLogoPath() {

        return logoPath;

    }

    public void setLogoPath(String logoPath) {

        this.logoPath = logoPath;

    }

    public Integer getWidth() {

        return width;

    }

    public void setWidth(Integer width) {

        this.width = width;

    }

    public Integer getHeight() {

        return height;

    }

    public void setHeight(Integer height) {

        this.height = height;

    }

    public Integer getOnColor() {

        return onColor;

    }

    public void setOnColor(Integer onColor) {

        this.onColor = onColor;

    }

    public Integer getBgColor() {

        return bgColor;

    }

    public void setBgColor(Integer bgColor) {

        this.bgColor = bgColor;

    }

    public Integer getMargin() {

        return margin;

    }

    public void setMargin(Integer margin) {

        this.margin = margin;

    }

    public ErrorCorrectionLevel getLevel() {

        return level;

    }

    public void setLevel(ErrorCorrectionLevel level) {

        this.level = level;

    }

    public String getImageFormat() {

        return imageFormat;

    }

    public void setImageFormat(String imageFormat) {

        this.imageFormat = imageFormat;

    }

}


读取二维码

package com.palmble.common.zxing;

import com.google.common.collect.Maps;

import com.google.zxing.*;

import com.google.zxing.client.j2se.BufferedImageLuminanceSource;

import com.google.zxing.common.HybridBinarizer;

import javax.imageio.ImageIO;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

import java.util.Map;

public class ReadUtil {

    public static  String decodeImg(File file) throws IOException, NotFoundException {

        if(!file.exists()) return "";

      BufferedImage bufferedImage= ImageIO.read(file);

        MultiFormatReader multiFormatReader= new MultiFormatReader();

        LuminanceSource luminanceSource=new BufferedImageLuminanceSource(bufferedImage);

        Binarizer binarizer=new HybridBinarizer(luminanceSource);

        BinaryBitmap binaryBitmap=new BinaryBitmap(binarizer);

        Map map= Maps.newHashMap();

        map.put(EncodeHintType.CHARACTER_SET,"utf-8");

        Result result=multiFormatReader.decode(binaryBitmap,map);

        return  result.toString();

    }

}



测试

ZXCodeUtil

package com.palmble.common.zxing;

import com.google.zxing.BarcodeFormat;

import com.google.zxing.EncodeHintType;

import com.google.zxing.MultiFormatWriter;

import com.google.zxing.WriterException;

import com.google.zxing.common.BitMatrix;

import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;

import javax.imageio.ImageIO;

import java.awt.*;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

import java.util.Hashtable;

import java.util.Map;

public class ZXCodeUtil {

  /* private String content;                //二维码内容

    private String qrCodeUrl;          //二维码网络路径

    private String filePath;          //二维码生成物理路径 也可以是文件的绝对路径

    private String fileName;          //二维码生成图片名称(包含后缀名)

    private String imageFormat;      //二维码图片后缀名(jpg、png)

    private String logoPath;          //logo图片

    private Integer width = 300;          //二维码宽度

    private Integer height = 300;          //二维码高度*/

  /* private Integer onColor = 0xFF000000;  //前景色 黑色

    private Integer bgColor = 0xFFFFFFFF; //背景色 白色

    private Integer margin = 2;            //白边大小,取值范围0~4

    private ErrorCorrectionLevel level = ErrorCorrectionLevel.M;  //二维码容错率指 纠错级别(L 7%、M 15%、Q 25%、H 30%)

*/

    private static  int BLACK = 0xFF000000;//用于设置图案的颜色

    private static  int WHITE = 0xFFFFFFFF; //用于背景色

    //加密

    /**

    * 生成包含字符串信息的二维码图片

    * @param imgpath 保存文件路径

    * @param formatimge 二维码图片格式

    * @param content 二维码携带信息

    * @param width 二维码图片的宽度

    * @param height

    * @param logopath

    * @throws Exception

    */

    public static void encodeImage(String imgpath,String formatimge,String content,int width,int height,String logopath) throws Exception {

        File file=new File(imgpath);

        if(!file.exists()){

            throw new Exception("文件路径不存在");

        }

        Map <EncodeHintType,Object> hints=new Hashtable <>();

        //排错率 L<M<Q<H

        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M); // 指定纠错等级

        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); // 指定编码格式

        hints.put(EncodeHintType.MARGIN,1);//外边距

        /**

        * content 加密的内容

        * BarcodeFormat.QR_CODE 要解析的类型

        * hints 加密涉及的一些参数:编码、排错率

        */

        BitMatrix bitMatrix=new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE,width,height,hints);

      //内存中的图片

        BufferedImage bufferedImage=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);

        for (int x=0;x<width;x++){

            for (int y = 0; y < height; y++) {

                /*int[] rgbBlack=new int[]{0,0,0};

                int[] rgbWhite=new int[]{255,255,255};*/

                bufferedImage.setRGB(x,y,(bitMatrix.get(x,y)?BLACK:WHITE));

            }

        }

        //logo

      bufferedImage= LogoUtil.logoMatrix(bufferedImage,logopath);

        //生成二维码图片

        ImageIO.write(bufferedImage,formatimge,file);

    }

    public static void main(String[] args) throws Exception {

        ZXCodeUtil.encodeImage("D:/zxing.gif","gif","在海南的朋友们想买野生土蜂蜜可以找我哟!!!!",300,300,"D:/1.png");

          //File file=new File("D:/2.png");

          //String string=ReadUtil.decodeImg(file);

      //  System.out.println("string=="+string);

      /* QrCodeUtil qrCodeUtil=new QrCodeUtil();

        qrCodeUtil.setFilePath("D:/zxing2.gif");

        qrCodeUtil.setImageFormat("gif");

        qrCodeUtil.setContent("com");

        qrCodeUtil.setWidth(200);

        qrCodeUtil.setHeight(200);

        qrCodeUtil.setLogoPath("d:/1.png");

        qrCodeUtil.createQRCode();*/

    }

    }

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容