목록분류 전체보기 (158)
GGYU
1. 메뉴 파스타 리조또 2. 특징 저렴한 가격 리조또랑 파스타 둘다 맛있음 괜찮은 분위기 다만 양이 적음. 남녀커플 가면 세개는 시야 함 3. 기타 테이블 수가 좀 적음.
1. 메뉴 닭똥집 2. 특징 마늘과 고추가 들어있음. 고추를 먹으면 생각보다 매움. 느끼하지 않고 질기지도 않음. 옛날통닭도 있으나 개인적으로 닭똥집 튀김이 맛있음. 3. 기타 지리가 매우 협소함.
1. 메뉴 꿔바로우 짬뽕 2. 특징 꿔바로우는 보통 상상하는 맛. 그 이상 이하도 아님. 짬뽕은 호불호가 갈릴듯. 해물맛이 강하고 굉장히 심심한 맛임. 짠맛 단맛 매운밋 없음.
1. 메뉴 함박스테이크 누룽지 함박 스테이크 해물볶음 우동 같은... 볶음밥 같은.... (메뉴 이름이 하나도 생각이 안나네...ㅠ) 2. 특징 밥집이라기 보단 술집에 가까움. 점심 메뉴가 부족함. (시킬 메뉴가 거의 없음) 함박스테이크와 다른 메뉴들도 맛이 있음. 음식들 모두 매운 맛일 시켰는데 적당히 매움( 불닭볶음면의 10프로 정도?) 느끼할수도 있는 음식인데 상당히 맛있는편. 3. 기타 볶음우동(?) 볶음밥(?)을 제외하면 점심에 먹를게 없음 점심 메뉴가 생겼으면 좋겠음
예제1.package com.javacodegeeks.snippets.core;import java.lang.reflect.Field;public class GenericCopy { /** * Deep-copies the values from one object to the other * */ public static void main(String[] args) { A a1 = new A(1, 2, new B("string 1", 10)); A a2 = new A(3, 4, new B("string 2", 20)); System.out.println("a1 is :" + a1); System.out.println("a2 is :" + a2); copyFields(a1, a2); System.out.pri..
Student.javaimport java.io.Serializable;public class Student implements Serializable { private static final long serialVersionUID = 5950169519310163575L;private int id;private String name; public Student(int id, String name) {this.id = id;this.name = name;} public int getId() {return id;} public void setId(int id) {this.id = id;} public String getName() {return name;} public void setName(String ..
// to user defined criteria.import java.util.*;import java.lang.*;import java.io.*; // A class to represent a student.class Student{ int rollno; String name, address; // Constructor public Student(int rollno, String name, String address) { this.rollno = rollno; this.name = name; this.address = address; } // Used to print student details in main() public String toString() { return this.rollno + "..
HashInterface.javapublic interface HashInterface {String dowork(String preHash);void upateHash(String PreHash);} HashAbstract.javapublic abstract class HashAbstract implements HashInterface{Public HashInterface node=null; public final void updateHash(String preHash){preHash=dowork(preHash);if(node!=null)node.update(preHash);}} BlockInfo.javapublic class BlockInfo extends HashAbstract{private Str..
private static String getSha512(String plainText) { try { MessageDigest md = MessageDigest.getInstance("SHA-512"); byte[] bytes = plainText.getBytes(Charset.forName("UTF-8")); md.update(bytes); return Base64.encode(md.digest()); } catch (Exception e) { System.out.println("Sha512 error."); e.printStackTrace(); return null; } }
public static void base64() { String text = "ktko"; byte[] targetBytes = text.getBytes(); // Base64 인코딩 /////////////////////////////////////////////////// Encoder encoder = Base64.getEncoder(); byte[] encodedBytes = encoder.encode(targetBytes); // Base64 디코딩 /////////////////////////////////////////////////// Decoder decoder = Base64.getDecoder(); byte[] decodedBytes = decoder.decode(encodedByt..