Package com.cxy.redisclient.service

Examples of com.cxy.redisclient.service.ImportService


import junit.framework.TestCase;

public class ImportTest extends TestCase {

  public void testImportFile() throws IOException {
    ImportService service = new ImportService("C:\\Users\\xinyu\\Desktop\\export", 6, 12);
    service.importFile();
  }
View Full Code Here


    dialog.setText(i18nFile.getText(I18nFile.IMPORTREDIS));
    String[] filterExt = { "*.*" };
    dialog.setFilterExtensions(filterExt);
    String file = dialog.open();
    if (file != null) {
      ImportService service = new ImportService(file, cinfo.getId(),
          cinfo.getDb());
      try {
        service.importFile();
      } catch (IOException e) {
        throw new RuntimeException(e.getMessage());
      }

      dbContainerTreeItemSelected(treeItem, true);
View Full Code Here

TOP

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

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.