public class Main{}
public class BANKACCOUT{}
На виртуальном устройстве в настройках был установлен часовой пояс GTM-0, а у меня +2. Это и решило проблему.
public static Calendar getDate() {
Calendar date = Calendar.getInstance();
date.setTimeInMillis(timestamp * 1000);
return date;
}
public static void main(String[] args) {
long timestamp = System.currentTimeMillis();
Calendar calendar = Calendar.getInstance();
// Ваш код:
calendar.setTimeInMillis(timestamp * 1000);
System.out.println(calendar.getTime());
// Мой код:
calendar.setTimeInMillis(timestamp);
System.out.println(calendar.getTime());
}
При добавлении количества товара в input общая цена не изменяется
Как вынести отдельное количества продукта с листа java?
Cannot resolve constructor 'Paragraph(java.lang.String, com.itextpdf.text.Font)'
FtpConnect implements IServer, SshConnect implements IServer
Соответственно, внедрив зависимость IServer в код, вы можете указать какая реализация данного интерфейса должны быть внедрена.By city name. Input the city name or its part and get the list of the most proper cities in the world. Example - Lon or Lond or London. The more precise city name you put the more precise list you will get. To make it more precise put the city's name or its part, comma, the name of the county or 2-letter country code. You will get all proper cities in chosen county. The order is important - the first is city name than comma than county. Example - Lon, UK or Lon, GB or London, GB or Lon, England. By geographic coordinates.
LONDON ("London", "Лондон")
Организовал ввод названия города через меню и вот таким образом
Зачем в языке программирования так много типов данных?
Особенно byte или short, ведь их полностью заменяет int. Зачем они нужны? В чем их профит?
Есть класс комнат и класс с резервацией, а так-же DTOшки к ним, теперь мне нужно написать примерно такой код: если в коллекции есть комната X, проверить, есть ли промежуток дат (timestamp) от A1 до A2.
Фишка в том, что я приблизительно понимаю что делать и в то же время не знаю, как это написать.
findAllByStartDateLessThanEqualAndEndDateGreaterThanEqual(OffsetDateTime endDate, OffsetDateTime startDate);
@Query(value = "from EntityClassTable t where yourDate BETWEEN :startDate AND :endDate")
public List<EntityClassTable> getAllBetweenDates(@Param("startDate")Date startDate,@Param("endDate")Date endDate);
-----------------------------------com.example.Address.java-----------------------------------
package com.example;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Address {
@SerializedName("street")
@Expose
public String street;
@SerializedName("suite")
@Expose
public String suite;
@SerializedName("city")
@Expose
public String city;
@SerializedName("zipcode")
@Expose
public String zipcode;
@SerializedName("geo")
@Expose
public Geo geo;
}
-----------------------------------com.example.Company.java-----------------------------------
package com.example;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Company {
@SerializedName("name")
@Expose
public String name;
@SerializedName("catchPhrase")
@Expose
public String catchPhrase;
@SerializedName("bs")
@Expose
public String bs;
}
-----------------------------------com.example.Example.java-----------------------------------
package com.example;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Example {
@SerializedName("id")
@Expose
public int id;
@SerializedName("name")
@Expose
public String name;
@SerializedName("username")
@Expose
public String username;
@SerializedName("email")
@Expose
public String email;
@SerializedName("address")
@Expose
public Address address;
@SerializedName("phone")
@Expose
public String phone;
@SerializedName("website")
@Expose
public String website;
@SerializedName("company")
@Expose
public Company company;
}
-----------------------------------com.example.Geo.java-----------------------------------
package com.example;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Geo {
@SerializedName("lat")
@Expose
public String lat;
@SerializedName("lng")
@Expose
public String lng;
}
${@environment.getProperty('css.specific.name')}
@ConfigurationProperties
<span th:text="@foo.getBar()"></span>
public class Main {
public static void main(String[] args) {
final String urlAdress = "http://example.com"; // url куда нужно совершить запрос
URL url = new URL(urlAdress);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
int status = con.getResponseCode(); // совершаем запрос
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())); // читаем ответ
String inputLine;
StringBuffer content = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
con.disconnect();
}
}