Giter Site home page Giter Site logo

jesusbmx / juno Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 14.3 MB

Herramientas de desarrollo para java y Android

Java 100.00%
java android utils converts formats base64 ioutils arrays concurrency numbers strings file-basename file-extension file-read file-write round-avoid async-await

juno's Introduction

Juno

Herramientas de desarrollo para java y Android

Descargar juno.jar

Convert

int i = Convert.toInt("1", -1); // 1
float f = Convert.toFloat("1.1"); // 1.1f
double d = Convert.toDouble("2.2"); // 2.2d
double l = Convert.toLong("1000"); // 1000L
String str = Convert.toString(f, ""); // "1.1"
boolean bool = Convert.toBool("true"); // true

Base64

String encodeBase64 = Convert.toBase64("Hola mundo");
System.out.println(encodeBase64);

String decodeBase64 = Convert.fromBase64(encodeBase64);
System.out.println(decodeBase64);
> SG9sYSBtdW5kbw==
> Hola mundo

Strings

Validación para cadenas.

String txt = null;
if (Strings.isEmpty(txt)) {
  System.out.println("txt is empty");
}
    
txt = Validate.ifNull(txt, "hola mundo");
System.out.printf("txt = '%s'\n", txt);

txt = Strings.abbreviate(txt, 7);
System.out.printf("txt = '%s'\n", txt);

String name = "jesus   ";
name = Strings.trim(name);
name = Strings.capitalize(name);
System.out.printf("name = '%s'\n", name);

System.out.println(Strings.subStr("[Hola mundo]", "[", "]"));
> txt is empty
> txt = 'hola mundo'
> txt = 'hola...'
> name = 'Jesus'
> Hola mundo

Numbers

Conversión de valores numéricos

String number = "-892768237.50";
if (Numbers.isNumber(number)) {
  System.out.printf("'%f' is number\n", Convert.toDouble(number));
} else {
  System.out.printf("'%s' not is number\n", number);
}
   
String str = "10.80";
    
int i = Convert.toInt(str);
System.out.printf("i = '%s'\n", i);
    
float f = Convert.toFloat(str);
System.out.printf("f = '%f'\n", f);

double round = Numbers.roundAvoid(948.856099955012, 2);
System.out.println(round);
> '-892768237.500000' is number
> i = '0'
> f = '10.800000'
> 948.86

Validate

String a = null;
String b = "b";
System.out.println(Validate.eq(a, b));
System.out.println(Validate.isNull(null));
System.out.println(Validate.isNotNull(null));
> false
> true
> false

Collections

List<String> strList = Collect.listOf("1", "2", "3", "7", "9");
List<Integer> intList = Collect.map(strList, (String it) -> Convert.toInt(it) );

if (Collect.hasIndex(strList, 2)) {
  System.out.printf("list[2] = '%s'\n", strList.get(2));
}

if (Collect.isEmpty(strList)) {
  System.out.println("list is empty");
}

System.out.println(Collect.get(strList, 50, "defaultVal"));

System.out.println(Collect.join(strList));
System.out.println(Collect.join(strList, (String it) -> "\"" + it.toString() + "\"" ));

boolean some = Collect.some(strList, (String it) -> t.equals("7") );
System.out.println(some);

boolean every = Collect.every(intList, (Integer it) -> it % 2 == 0 );
System.out.println(every);

String find = Collect.find(strList, (String it) -> t.equals("9") );
System.out.println(find);
    
List<Integer> filter = Collect.filter(intList, (Integer it) -> it > 5 );
System.out.println(Collect.join(filter, ","));

List<String> fill = Collect.fill(strList, "z");
System.out.println(Collect.join(fill, ","));
> list[2] = '3'
> defaultVal
> 1,2,3,7,9
> "1", "2", "3", "7", "9"
> true
> false
> 9
> 7,9
> z,z,z,z,z

Date

String sDate = "2023-04-30 19:10:02";
        
Calendar date = Dates.parseCalendar(sDate, "yyyy-MM-dd");
System.out.println(Dates.dateTimeFormat(date)); // 2023-04-30 00:00:00

Date dateTime = Dates.parseDate(sDate, "yyyy-MM-dd HH:mm:ss");
System.out.println(Dates.dateTimeFormat(dateTime)); // 2023-04-30 19:10:02


System.out.println(Dates.dateFormat(new Date())); // 2023-05-03
System.out.println(Dates.dateTimeFormat(new Date())); // 2023-05-03 12:31:47
System.out.println(Dates.format("yyyy-MM-dd HH:mm:ss", new Date())); // 2023-05-03 12:31:47


Calendar cDate = Dates.calendarWithoutTime(); // get date without time
System.out.println(Dates.dateTimeFormat(cDate)); // 2023-05-03 00:00:00

Calendar cDateTime = Dates.calendarWithTime(); // get date and time
System.out.println(Dates.dateTimeFormat(cDateTime)); // 2023-05-03 12:31:47

// ISO_8601_24H_FULL_FORMAT
Date date_iso_8601 = Dates.parseDate("2023-06-20T19:18:11.000Z", 
        "yyyy-MM-dd'T'HH:mm:ss.SSSXXX");

System.out.println(Dates.dateTimeFormat(date_iso_8601)); // 2023-06-20 13:18:11

Async Await

Async<String> read(final File file) {
  return new AsyncCallable<>(() -> {
    //throw new Exception("error");
    return Files.readString(file);
  });
}

Run tasks asynchronously

File file = new File("/home/user/a.txt");

read(file).execute((String result) -> {
  System.out.println(result);

}, (Exception error) -> {
  System.err.println(error);

});

Run tasks synchronously

try {
  File file = new File("/home/user/a.txt");

  String result = read(file).await();
  System.out.println(result);

} catch(Exception error) {
  System.err.println(error);
}

Async Sender

Async<String> read(final File file) {
  return new AsyncSender<>((sender) -> {
    //sender.reject(throw new Exception("error"));
    String result = Files.readString(file);
    sender.resolve(result);
  });
}

Abstract Async

Async<String> read(final File file) {
  return new AbstractAsync<String>() {
    @Override
    public String call() throws Exception {
      //throw new Exception("error");
      return Files.readString(file);
    }
 };
}

EventManager

EventManager receiver = EventManager.get("MyHandler");
receiver.on("log", (EventMessage<String> evt) -> {
    System.out.println(evt.getValue());
});

EventManager sender = EventManager.get("MyHandler");
sender.send("log", "Hola mundo");
EventManager receiver = EventManager.get("MyHandler");
receiver.once("status", (EventMessage<Integer> evt) -> {
    System.out.println(evt.getValue());
});

EventManager sender = EventManager.get("MyHandler");
sender.send("status", 200);

IO

String path = "/etc/hola.txt";
File f = new File(path);

Files.write(f, "Hola mundo\n", /*append*/true, "UTF-8");

String str = Files.readString(f);
System.out.println(str);

System.out.printf("parent: %s\n", Files.getParent(path));
System.out.printf("name: %s\n", Files.getName(path));
System.out.printf("extension: %s\n", Files.getExtension(path));
System.out.printf("base name: %s\n", Files.getBaseName(path));
> Hola mundo
>
> parent: /etc/
> name: hola.txt
> extension: txt
> base name: hola

Read bytes.

byte[] bytes = Files.readByteArray(new File("/etc/hola.txt"));

Copy

Files.copy("/etc/hola.txt", "/etc/hola-copy.txt");
FileInputStream in = null;
FileOutputStream out = null;
try {
  in = new FileInputStream("/etc/hola.txt");
  out = new FileOutputStream("/etc/hola-copy.txt");
  Files.copy(in, out);

} finally {
  Files.closeQuietly(in);
  Files.closeQuietly(out);
}

License

Copyright 2018 juno, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

juno's People

Contributors

jesusbmx avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.