Examples of rename()


Examples of ch.qos.logback.core.rolling.helper.RenameUtil.rename()

    File fromFile = File.createTempFile("from" + diff, "test",
            randomOutputDir);

    String randomTARGETDir = CoreTestConstants.OUTPUT_DIR_PREFIX + diff2;

    renameUtil.rename(fromFile.toString(), new File(randomTARGETDir + "/to.test").toString());
    StatusPrinter.printInCaseOfErrorsOrWarnings(context);
    assertTrue(statusChecker.isErrorFree(0));
  }

Examples of clips.delegate.directory.complex.DirectoryServicesGroupItem.rename()

            if (res == JOptionPane.OK_OPTION) {
                if (tfName.getText().isEmpty()) {
                    MessageBox.showError(MessageBox.E_MAKE_FUCKING_EXCEPTION, "Данные некорректны");
                    return;
                } else {
                    selected.rename(tfGroupCode.getText(), tfName.getText());
                }
            }
        }
    } catch (ClipsException ex) {
        MessageBox.showException(ex);

Examples of clips.delegate.directory.complex.DirectoryVidalAtcItem.rename()

                if (res == JOptionPane.OK_OPTION) {
                    if (tfName.getText().isEmpty() || tfGroupCode.getText().isEmpty()) {
                        MessageBox.showError(MessageBox.E_MAKE_FUCKING_EXCEPTION, "Данные некорректны");
                        return;
                    } else {
                        selected.rename(tfGroupCode.getText(), tfName.getText());
                    }
                }
            }
        } catch (ClipsException ex) {
            MessageBox.showException(ex);

Examples of com.enterprisedt.net.ftp.FTPClient.rename()

            // get bytes again - should be 2 x
            buf = ftp.get(filename);
            System.out.println("Got " + buf.length + " bytes");

            // rename
            ftp.rename(filename, filename + ".new");

            // get a remote file - the renamed one
            ftp.get(filename + ".tst", filename + ".new");

            // ASCII transfer

Examples of com.ettrema.httpclient.File.rename()

        final HttpServletRequest req=ServletTestRunner.localRequest.get();
        Host hh=new Host(req.getServerName(),"/webdav/autopub",req.getServerPort(),"admin@dotcms.com","admin",null,null);
       
        Folder demo=(Folder)hh.child("demo.dotcms.com");
        File f1=(File)demo.child(filename);
        f1.rename(renamefilename);
        Thread.sleep(1000);
        File f2=(File)demo.child(renamefilename);
        ByteArrayOutputStream out=new ByteArrayOutputStream();
        f2.download(out, null);
        Assert.assertEquals("this is a test text", out.toString());

Examples of com.flaptor.hounder.crawler.pagedb.PageDB.rename()

                if (running()) {
                    boolean ok = false;
                    String oldName = oldPageDB.getDir();
                    if (attempt(tmpPageDB.deleteDir(false), "deleting pagedb.tmp")) {
                        if (attempt(oldPageDB.rename(tmpPageDB.getDir()), "renaming pagedb -> pagedb.tmp")) {
                            if (attempt(newPageDB.rename(oldName), "renaming pagedb.new -> pagedb")) {
                                if (attempt(tmpPageDB.deleteDir(false), "deleting pagedb.tmp (2)")) {
                                    ok = true;
                                }
                            }
                        }

Examples of com.flaptor.hounder.crawler.pagedb.distributed.DPageDB.rename()

                newPageDB.close();
                String oldName = oldPageDB.getDir();
                PageDB tmpPageDB = new PageDB(pagedbDir+".tmp");
                tmpPageDB.deleteDir(false);
                if (attempt(oldPageDB.rename(tmpPageDB.getDir()), "renaming pagedb -> pagedb.tmp")) {
                    if (attempt(newPageDB.rename(oldName), "renaming pagedb.new -> pagedb")) {
                        if (attempt(tmpPageDB.deleteDir(false), "deleting pagedb.tmp")) {
                            logger.info("Done redistributing.");
                        }
                    }
                }

Examples of com.googlecode.mjorm.query.DaoModifier.rename()

          modifier.pullAll(field, Object[].class.cast(value));
          break;
        case MqlParser.RENAME:
          field = child(modiferTree, 0).getText();
          value = child(modiferTree, 1).getText();
          modifier.rename(field, String.class.cast(value));
          break;
        case MqlParser.BITWISE:
          Tree opTree = modiferTree.getChild(0);
          field = child(modiferTree, 1).getText();
          value = readVariableLiteral(child(modiferTree, 2), ctx);

Examples of com.hdfsTools.action.renameAction.rename()

    String src = file.getFileUrl();// 源url
    String dst = src.substring(0, src.lastIndexOf("/")) + "/" + name;// 新的url
    System.out.println("the new name is:" + dst);
    renameAction rename = new renameAction();
    try {
      dohdfs = rename.rename(src, dst);// 操作文件系统
    } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }//
    if (dohdfs) {

Examples of com.hdfsTools.dao.renameDao.rename()

   */
  public boolean rename(String src, String dst) throws IOException {

    renameDao rename = new renameImpl();

    return rename.rename(getConf(), src, dst);
  }

  public static void main(String args[]) throws IOException {
    renameAction rename = new renameAction();
    String src = "/user/gg.txt1";
TOP
Copyright © 2018 www.massapi.com. 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.