una suma sencilla restar numeros metodos meses hexadecimales hacer fechas fecha entre dias contador con como calcular calculadora años acumulador java date sum intervals subtraction

sencilla - Fecha intervalo suma y resta en Java



restar dias a una fecha java (2)

Creo que se puede hacer básicamente usando Joda-Time con algún código personalizado. Se supone que A es el intervalo con el que deben relacionarse todos los demás intervalos.

Si bien este código debería dar los resultados esperados (y debería funcionar para diferentes valores en consecuencia), recomiendo probarlo con datos muy diferentes, especialmente para los tres casos a) un intervalo que no se intersecta A , b) intersección A al principio y c) un intervalo que a su vez intersecta B o C o D

Por lo tanto, a pesar de esto, podría ser útil para otras pruebas.

Interval a = new Interval(Instant.parse("2015-01-01T00:00Z"), Instant.parse("2015-01-20T00:00Z")); List<Interval> l = Arrays.asList( /* b */ new Interval(Instant.parse("2015-01-05T00:00Z"), Instant.parse("2015-01-10T00:00Z")), /* c */ new Interval(Instant.parse("2015-01-11T00:00Z"), Instant.parse("2015-01-14T00:00Z")), /* d */ new Interval(Instant.parse("2015-01-19T00:00Z"), Instant.parse("2015-01-25T00:00Z")) ); List<Interval> results = new ArrayList<Interval>(); for (Interval i : l) { if (a.contains(i)) { // if i is completely inside a, then calculate the first part and the remaining part // whereas the first part will be added to the result Interval firstPart = new Interval(a.getStart(), i.getStart()); results.add(firstPart); // followed by i itself (skipped) // part after i, inside a Interval remainingPart = new Interval(i.getEnd(), a.getEnd()); a = remainingPart; } else if (i.overlaps(a)) { // if the intervals only overlap, then we take the earliest beginning and the latest ending as a result part DateTime overlapMin = (a.getStart().isBefore(i.getStart())) ? a.getStart() : i.getStart(); DateTime overlapMax = (a.getEnd().isAfter(i.getEnd())) ? a.getEnd() : i.getEnd(); Interval overlapAndBothParts = new Interval(overlapMin, overlapMax); results.add(overlapAndBothParts); // if the checked interval i is at the beginning, then a will become the part after this "overlap" if (i.getStartMillis() < a.getStartMillis()) { Interval whatsLeft = new Interval(i.getEndMillis(), a.getEndMillis()); a = whatsLeft; } } } // print result for (Interval i : results) { System.out.println("result part: " + i); }

Estoy buscando una biblioteca o una clase auxiliar en Java que me permita realizar sumas y restas de intervalos de fechas.

Por ejemplo, digamos que tengo los siguientes intervalos de fecha:

A = ["2015-01-01 00:00", "2015-01-20 00:00"] B = ["2015-01-05 00:00", "2015-01-10 00:00"] C = ["2015-01-11 00:00", "2015-01-14 00:00"] D = ["2015-01-19 00:00", "2015-01-25 00:00"] 1 A 20 |----------------------------------| |---------| |----------| |------------| 5 B 10 11 C 14 19 D 25

Y digamos que me gustaría calcular lo siguiente:

A - B - C + D = { ["2015-01-01 00:00", "2015-01-05 00:00"[, ]"2015-01-10 00:00", "2015-01-11 00:00"[, ]"2015-01-14 00:00", "2015-01-25 00:00"] } 1 5 10 11 14 25 |---| |---| |----------------|

Sé que puedo construir mi propia lógica usando Java puro, pero prefiero no reinventar la rueda ...

Estuve investigando Joda-Time , pero no pude entender cómo realizar esas operaciones usándolo.

¡Muchas gracias!


Encontré exactamente lo que necesitaba: Rangos , de las bibliotecas de guayaba .

Funciona así:

Range<Date> a = Range.closed( new GregorianCalendar(2015, 0, 1).getTime(), new GregorianCalendar(2015, 0, 20).getTime()); Range<Date> b = Range.closed( new GregorianCalendar(2015, 0, 5).getTime(), new GregorianCalendar(2015, 0, 10).getTime()); Range<Date> c = Range.closed( new GregorianCalendar(2015, 0, 11).getTime(), new GregorianCalendar(2015, 0, 14).getTime()); Range<Date> d = Range.closed( new GregorianCalendar(2015, 0, 19).getTime(), new GregorianCalendar(2015, 0, 25).getTime()); RangeSet<Date> result = TreeRangeSet.create(); result.add(a); result.remove(b); result.remove(c); result.add(d); System.out.println(result);

El código de arriba imprime:

[ [Thu Jan 01 00:00:00 BRST 2015‥Mon Jan 05 00:00:00 BRST 2015), (Sat Jan 10 00:00:00 BRST 2015‥Sun Jan 11 00:00:00 BRST 2015), (Wed Jan 14 00:00:00 BRST 2015‥Sun Jan 25 00:00:00 BRST 2015] ]