KR101475898B1 - Method for data migration and computer readable recording medium applying the same - Google Patents
Method for data migration and computer readable recording medium applying the same Download PDFInfo
- Publication number
- KR101475898B1 KR101475898B1 KR20130118545A KR20130118545A KR101475898B1 KR 101475898 B1 KR101475898 B1 KR 101475898B1 KR 20130118545 A KR20130118545 A KR 20130118545A KR 20130118545 A KR20130118545 A KR 20130118545A KR 101475898 B1 KR101475898 B1 KR 101475898B1
- Authority
- KR
- South Korea
- Prior art keywords
- data
- original
- terminal
- storing
- target
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F13/00—Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
- G06F13/38—Information transfer, e.g. on bus
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/10—File systems; File servers
- G06F16/17—Details of further file system functions
- G06F16/178—Techniques for file synchronisation in file systems
- G06F16/1794—Details of file format conversion
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Information Transfer Between Computers (AREA)
Abstract
Description
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a data transfer method and a computer readable recording medium using the same, and more particularly, to a data transfer method for transferring data between two terminals and a computer readable recording medium using the method.
When a user is using a mobile phone and replacing it with a new one, one of the things that is absolutely necessary is to move the data, including contacts, downloaded apps, and photos / videos, to the new phone.
This process is even more important nowadays because smartphones store vast amounts of data in them, unlike in past feature phones. So many users have to back up or manage data from time to time through various methods. One way of doing this is to use a PC program to transfer cell phone data.
However, since the mobile phone data escalation program transfers the data of the mobile phone through the external server, there is a high possibility that the data of the mobile phone is leaked or hacked to the outside. In particular, since the data of a mobile phone contains personal information such as a user's personal photograph or a contact, security needs to be enhanced.
Accordingly, it is required to search for measures to enhance security when data is transferred between mobile phones.
It is an object of the present invention to provide a data transfer method of storing source data and target data in the form of a data structure in order to transfer data from an original terminal to a target terminal, And a computer readable recording medium.
According to another aspect of the present invention, there is provided a method for data transfer of a data transfer apparatus for transferring data from an original terminal to a target terminal, the method including: receiving original data from the original terminal; Storing the original data in a data structure form; Formatting the original data into object data; Storing the object data in a data structure form; And transmitting the target data to the target terminal.
The step of storing the original data in the data structure may include storing the original data in the volatile storage unit and storing the target data in the data structure, in the volatile storage unit.
In addition, the data structure may be a data structure of a class type.
The step of storing the original data in the data structure may include storing the original data as a variable value in a class corresponding to the original terminal and storing the object data in the data structure, It may be stored as a variable value in a class corresponding to the terminal.
The method may further include confirming a connection between the original terminal and the target terminal, wherein the step of receiving original data from the original terminal comprises the steps of: receiving device information of the original terminal and the target terminal, , It may receive original data from the original terminal.
The method may further include encrypting the original data and storing the encrypted original data in a nonvolatile storage unit as a temporary file.
The method may further include transmitting the read result information of the original data to an external server.
The original data and the target data may include at least one of an address book, a photograph, a text message, a call log, and an application list.
The method may further include receiving a data format related data format for each terminal type from an external server at the time of initial execution of the data diversion program and storing the data structure in a data structure inside the data diversion program.
Meanwhile, in the computer-readable recording medium according to an embodiment of the present invention, a computer program for performing the data transfer method may be recorded.
According to various embodiments of the present invention, it is possible to provide a data transfer method of storing source data and target data in a data structure form in order to transfer data from an original terminal to a target terminal, and a computer readable recording medium to which the present invention is applied Thus, it is possible to minimize the possibility of leakage of the user's personal information because the internal data of the terminal is transferred within the data transfer apparatus.
FIG. 1 schematically shows a system configuration diagram for terminal data transfer according to an embodiment of the present invention; FIG.
2 is a block diagram showing an internal configuration of a terminal data transfer device according to an embodiment of the present invention;
Figure 3 is a flow chart provided to illustrate a data migration method in accordance with an embodiment of the present invention.
Hereinafter, the present invention will be described in detail with reference to the drawings.
1 is a diagram schematically showing a system configuration diagram for terminal data transfer according to an embodiment of the present invention. 2 is a block diagram illustrating an internal structure of a terminal data transfer device according to an embodiment of the present invention.
1 and 2, the
The
Also, the
The
The
Also, the
2, the
The
The
The original data represents data structure data having a data storage format of the
The
The
The
Hereinafter, the data transfer method will be described in detail with reference to FIG.
The
The
Here, the device information of the terminal indicates information on a device (cell phone, printer, CDROM, USB memory, etc.) connected to the
For example, a data structure for device information can be defined in the source code in a data escalation program in the following form:
class CMobileData
{
..
// variable
private:
CString str_Vid; // VID (Vendor ID)
CString str_Pid; // PID (Product ID)
CString str_PortRev; // Port Number
CString str_Inf [MAX_DEVICE_NUM]; // INF FileName
CString str_Service [MAX_DEVICE_SVC]; // Service Name
CString str_Version; // Service Version
int nComponentCount; // Device Count
int nStartComponentNum; // Start Device Count
CString nAnotherModel; // Another Model
int nAnotherModelCount; // Another Model Count
..
}
The data structure class for the device information of this type is stored in the
If the terminal device information of the
If the terminal device information of the
For example, the data structure of the data corresponding to the address book among the original data defined in the source code of the data escalation program is as follows.
class CAddressBook
{
public:
..
int addr_id; // AddressID
// BYTE code [5];
BYTE groupid; // GroupID
CString name; // Name
CString phonenum [5]; // Phone Number
WORD num_index [5];
CString shortnum [5]; // Short Number
CString email [3]; // EMail 1/2/3
CString memo; // Memo
BYTE addr_class [5]; // Address Class
CString birthday; // Birthday
BYTE prikey; // Primary Key
CString Address; // address
CString BDay; // Birthday date
CString BDayType; // Birthday Ms. Yang
};
In addition to the data structure of the address book as described above, the data structure of other original data may also be defined separately in the data evacuation program source code.
Then, the
Thereafter, the
Then, the
Then, the
Also, the
An example of the data structure of the result information of reading the original data is as follows.
class CPhoneBook
{
public:
..
int gacnt; // Total number of groups
int gccnt; // Current number of groups
int acnt; // total number of contacts
int ccnt; // Current number of contacts
int cindex; // Current Index
int tindex; // Total Index
int maxindex; // Max Index
..
};
Thus, the data structure of the result information of the original data reading can be defined in the form of a class in the source code of the data escalation program.
Thereafter, the
In this way, the
It will be appreciated that the technical idea of the present invention can also be applied to a computer-readable recording medium having a data evacuation program installed in the
While the present invention has been particularly shown and described with reference to exemplary embodiments thereof, it is to be understood that the invention is not limited to the disclosed exemplary embodiments, but, on the contrary, It will be understood by those skilled in the art that various changes in form and detail may be made therein without departing from the spirit and scope of the present invention.
100: data transfer apparatus 110: volatile storage unit
120: nonvolatile storage unit 130: control unit
210: original terminal 220: target terminal
250: External Server
Claims (10)
Receiving original data from the original terminal;
Storing the original data in a data structure form;
Formatting the original data into object data;
Storing the object data in a data structure form;
Transmitting the target data to the target terminal; And
And encrypting the original data and storing the encrypted original data in a nonvolatile storage unit as a temporary file.
Wherein the step of storing the original data in a data structure comprises:
Storing the original data in a volatile storage unit,
Wherein the step of storing the object data in a data structure comprises:
And the object data is stored in a volatile storage unit.
Wherein the data structure is a data structure of a class type.
Receiving original data from the original terminal;
Storing the original data in a data structure form;
Formatting the original data into object data;
Storing the object data in a data structure form; And
And transmitting the target data to the target terminal,
The data structure is a class data structure,
Wherein the step of storing the original data in a data structure comprises:
Storing the original data as a variable value in a class corresponding to the original terminal,
Wherein the step of storing the object data in a data structure comprises:
Wherein the target data is stored as a variable value in a class corresponding to the target terminal.
Further comprising: confirming a connection between the original terminal and the target terminal,
Wherein the step of receiving original data from the original terminal comprises:
And if the device information of the source terminal and the target terminal is included in the data structure, the source data is received from the source terminal.
Receiving original data from the original terminal;
Storing the original data in a data structure form;
Formatting the original data into object data;
Storing the object data in a data structure form;
Transmitting the target data to the target terminal; And
And transmitting the read result information of the original data to an external server.
Wherein the original data and the target data include:
Address book, photo, text message, call log, and application list.
Receiving a data format related data format for each terminal type from an external server at the time of initial execution of the data diversion program and storing the data structure in a data structure inside the data diversion program;
Receiving original data from the original terminal;
Storing the original data in a data structure form;
Formatting the original data into object data;
Storing the object data in a data structure form; And
And transmitting the target data to the target terminal.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
KR20130118545A KR101475898B1 (en) | 2013-10-04 | 2013-10-04 | Method for data migration and computer readable recording medium applying the same |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
KR20130118545A KR101475898B1 (en) | 2013-10-04 | 2013-10-04 | Method for data migration and computer readable recording medium applying the same |
Publications (1)
Publication Number | Publication Date |
---|---|
KR101475898B1 true KR101475898B1 (en) | 2014-12-23 |
Family
ID=52679783
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
KR20130118545A KR101475898B1 (en) | 2013-10-04 | 2013-10-04 | Method for data migration and computer readable recording medium applying the same |
Country Status (1)
Country | Link |
---|---|
KR (1) | KR101475898B1 (en) |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20100050619A (en) * | 2008-10-24 | 2010-05-14 | 주식회사 파이널데이터 | System for delivering data between different kinds of mobile devices and method thereof |
KR20120091402A (en) * | 2002-06-07 | 2012-08-17 | 지멘스 악티엔게젤샤프트 | Transmission of mms messages with the conversion of data types and/or data formats |
KR20130061529A (en) * | 2011-12-01 | 2013-06-11 | 에릭슨 엘지 주식회사 | Apparatus and method for synchronizing data between wireless terminals |
-
2013
- 2013-10-04 KR KR20130118545A patent/KR101475898B1/en not_active IP Right Cessation
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20120091402A (en) * | 2002-06-07 | 2012-08-17 | 지멘스 악티엔게젤샤프트 | Transmission of mms messages with the conversion of data types and/or data formats |
KR20100050619A (en) * | 2008-10-24 | 2010-05-14 | 주식회사 파이널데이터 | System for delivering data between different kinds of mobile devices and method thereof |
KR20130061529A (en) * | 2011-12-01 | 2013-06-11 | 에릭슨 엘지 주식회사 | Apparatus and method for synchronizing data between wireless terminals |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US10204235B2 (en) | Content item encryption on mobile devices | |
US20140359286A1 (en) | Contact management method, apparatus and system for third-party application | |
CN110347341B (en) | Data clearing method and control equipment | |
EP3082353A1 (en) | Method and terminal device for sending and receiving user data | |
CN107209678B (en) | System and method for adaptive cloning of mobile devices | |
CN103401902A (en) | Portable cloud storage system and method | |
US10956383B2 (en) | Device backup and wipe | |
KR20130138635A (en) | Method and apparatus for fault tolerant fota update with single backup block write | |
CN103281375B (en) | A kind of contact management method of third-party application and device, system | |
KR20120128357A (en) | Method and apparatus for splitting of media file | |
JP2020107347A (en) | Methods and apparatuses for storing file path and accessing local file | |
US20110187511A1 (en) | Method and apparatus for managing content, configuration and credential information among devices | |
WO2020063780A1 (en) | Application layout restoration method and apparatus, device and storage medium | |
CN103577516A (en) | Method and device for displaying contents | |
CN107580032B (en) | Data processing method, device and equipment | |
CN109885577A (en) | Data processing method, device, terminal and storage medium | |
US20140201316A1 (en) | Streaming zip | |
CN105160018A (en) | Method, device and system for image copy/paste | |
CN105488210A (en) | Batch data matching method and device | |
US11501016B1 (en) | Digital password protection | |
EP3343395A1 (en) | Data storage method and apparatus for mobile terminal | |
CN108985109B (en) | Data storage method and device | |
KR101475898B1 (en) | Method for data migration and computer readable recording medium applying the same | |
CN116628773A (en) | Data processing method, device, electronic equipment and storage medium | |
CN108197273B (en) | Method and device for multi-user data synchronization |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
E701 | Decision to grant or registration of patent right | ||
GRNT | Written decision to grant | ||
LAPS | Lapse due to unpaid annual fee |