org.apache.activemq.artemis.utils.Base64.decodeFileToFile()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(103)

本文整理了Java中org.apache.activemq.artemis.utils.Base64.decodeFileToFile()方法的一些代码示例,展示了Base64.decodeFileToFile()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Base64.decodeFileToFile()方法的具体详情如下:
包路径:org.apache.activemq.artemis.utils.Base64
类名称:Base64
方法名:decodeFileToFile

Base64.decodeFileToFile介绍

[英]Reads infile and decodes it to outfile.
[中]读取infile并将其解码为outfile。

代码示例

代码示例来源:origin: wildfly/wildfly

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: apache/activemq-artemis

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: org.apache.activemq/artemis-commons

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: apache/activemq-artemis

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: apache/activemq-artemis

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: org.apache.activemq/artemis-jms-client-all

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/**
* Encodes or decodes two files from the command line;
* <strong>feel free to delete this method (in fact you probably should)
* if you're embedding this code into a larger program.</strong>
*
* @param args Input args
*/
public static final void main(final String[] args) {
 if (args.length < 3) {
   Base64.usage("Not enough arguments.");
 } else { // end if: args.length < 3
   String flag = args[0];
   String infile = args[1];
   String outfile = args[2];
   if (flag.equals("-e")) {
    Base64.encodeFileToFile(infile, outfile);
   } else if (flag.equals("-d")) { // end if: encode
    Base64.decodeFileToFile(infile, outfile);
   } else {  // end else if: decode
    Base64.usage("Unknown flag: " + flag);
   } // end else
 } // end else
} // end main

相关文章