Package com.cxy.redisclient.service

Examples of com.cxy.redisclient.service.ExportService


import junit.framework.TestCase;

public class ExportTest extends TestCase {

  public void testExport() throws IOException {
    ExportService service = new ExportService("C:\\Users\\xinyu\\Desktop\\export", 5, 7, new ContainerKey(""));
    service.export();
  }
View Full Code Here


            .getContainerKey();
        containerKey = new ContainerKey(con + item.getText());
      }
    }

    ExportService service = new ExportService(file, cinfo.getId(),
        cinfo.getDb(), containerKey);
    try {
      service.export();
    } catch (IOException e) {
      throw new RuntimeException(e.getMessage());
    }
  }
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.service.ExportService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.