Introduction to the Foundation of tld Custom Label

Notes on tld tld is the abbreviation of taglib description. Its custom tags are usually used in jsp pages, and tld is usually used in web projects. jstl and c tags are used for validity judgment and permission judgment, which restrict and restrict some front-end page tags. Many people only know this type of tag, but they don't know what it d ...

Posted by Maiku on Wed, 03 Jul 2019 17:45:15 -0700

Data Types and Common Methods

Reading catalogue Introduction 2. Numbers String List 5. Yuan Zu Dictionary Seven. Collection Summary of data types Operator Character Coding 11. Document Processing Homework # An Introduction 1 What is data? x=10, 10 is the data we want to store 2 Why data should be classified into different types Data is used to represent sta ...

Posted by nano on Wed, 03 Jul 2019 12:08:36 -0700

C# Operation Redis Storage Base (Continuation 1)

The last article introduced the most basic method of C# manipulation of Redis, because I am learning, but also looking for information to learn, and then I write, understand, and have been supplementing, today to see a more advanced point of usage, for beginners Ha. Here I'm still using winform, or framwork 3.5. As you know from the previous b ...

Posted by Tsukasa on Mon, 01 Jul 2019 16:33:49 -0700

Api of Node.js File System

Api of Node.js File System //Public citation var fs = require('fs'), path = require('path'); 1. readFile function for reading files //readFile(filename,[options],callback); /** * filename, Required parameter, file name * [options],Optional parameters, can specify flag (file operation options, such as r + read and write; w + read and ...

Posted by embtech on Mon, 01 Jul 2019 16:12:57 -0700

Research on Web Service

SOA and Web Service First, understand the relationship between SOA and Web Service: * SOA Service Oriented Architecture, a concept for large distributed systems; * Web service is one of the ways to realize SOA. Not all SOAs are based on Web service. * But Web service is really the most mainstream way to implement SOA. Some people even equat ...

Posted by jkatcherny on Mon, 01 Jul 2019 12:33:52 -0700

Android: Background selector and shape Details

This week is the school's innovation and entrepreneurship week, a week without classes, just have time to put Android basic knowledge out of order. When I first learned Android, all the interfaces were ugly, and then I learned the background selector, which greatly improved the situation... Well, in fact, it's a lot of trouble to write, ...

Posted by tendrousbeastie on Sun, 30 Jun 2019 17:21:58 -0700

Summary of various export methods of C_

First: Use Microsoft.Office.Interop.Excel.dll First you need to install excel for office, and then find the Microsoft.Office.Interop.Excel.dll component to add to the reference. public void ExportExcel(DataTable dt) { if (dt != null) { Microsoft.Office.Interop.Excel.Application excel = new Micro ...

Posted by herghost on Sun, 30 Jun 2019 13:45:32 -0700

mysql Character Set and Proofreading Rules - Case Sensitive

    In relational databases, oracle/sql_server/db2 has case-sensitive data, but mysql is a bit strange. It is case-insensitive to data. See below for details.    MySQL default rules for database name, table name, column name, alias case in Linux are as follows:       &nb ...

Posted by Rai_de on Sat, 29 Jun 2019 16:27:40 -0700

Summary of JavaScript Advanced Programming Chapter 5 Reference Types

A reference type is a data structure that represents an abstract set. The instantiation is then the object. Reference Type (or Understand as Class) -------------- (Instance) ----------------> ObjectIn javascript, reference types are instances of Object types. - There are two ways to create an object (Object instance). 1) Use a new Objec ...

Posted by kjtocool on Sat, 29 Jun 2019 14:04:53 -0700

The Service of the Four Components of Android

1. Concept: (1).Service can be said to be an Activity running in the background. It's not a separate process, it just needs the application to tell it what to do in the background. (2) If it is to interact with the user, it needs to receive the display through the notification bar or by sending broadcasting and UI. (3) Its applicatio ...

Posted by thiscatis on Sat, 29 Jun 2019 13:29:37 -0700